Load data

Hm, seems like funky StackOverflow way of turning matrix elements into list gave it this weird name “1” with backticks around it

data[1,“letterSeq”]\(letterSeq\)1

Make condition names more sensible - stream (Left/Right) and orientation (Canonical/Inverted)

E2<- data
names(E2)[names(E2) == 'target'] <-'stream'
names(E2)[names(E2) == 'condition'] <-'orientation'
E2$stream[ E2$stream==1 ] <- "Left"
E2$stream[ E2$stream==2 ] <- "Right"
E2$targetSide[ E2$targetSide==0 ] <- "Both"
E2$targetSide[ E2$targetSide==1 ] <- "Left"
E2$targetSide[ E2$targetSide==2 ] <- "Right"

#mutate condition to Orientation
E2$orientation[ E2$orientation==1 ] <- "Canonical"
E2$orientation[ E2$orientation==2 ] <- "Inverted"

NaNs for targetSP indicate one-target trials, which are also indicated by targetSide==0

table(E2$targetSP, E2$targetSide, dnn=c("targetSP","targetSide"), useNA="ifany")
        targetSide
targetSP Both Left Right
     5   2922  369   382
     6   2902  339   332
     7   2748  372   368
     8   2836  341   354
     9   2894  377   373
     10  2892  356   356
     11  2938  380   357
     12  2908  346   358
     NaN    0 2880  2880

Proportion of one-target trials seems to be nrow(E2 %>% filter(targetSide!="Both")) / nrow(E2)

Sanity-check some data by graphing.

Investigate whether pathological identicalness of inverted/canonical happens, that happened in E1 . Seems it doesn’t

dg<- E2 %>% filter(subject < "AC")

library(ggplot2)
g=ggplot(dg, aes(x=SPE)) + facet_grid(subject+orientation~stream) #,  scales="free_y")
g<-g+geom_histogram(binwidth=1,color="grey90") + xlim(minSPE,maxSPE)
g<-g+ geom_text(x=12, y= 33, aes(label = subject)) #inset subject name/number. Unfortunately it overwrites itself a million times
show(g)
Warning: Removed 144 rows containing non-finite values (stat_bin).

Try to analyze one bit of data.

library(mixRSVP)
dg<-E2 %>% filter(subject=="AA")
dg<-dg %>% filter( !is.nan(targetSP) ) #excluding 1-target trials rows reporting stream on opposite side. Eventually, use those to evaluate swaps.

analyzeOneCondition(dg,numItemsInStream,parameterBounds(),nReplicates=2)
$efficacy
[1] 0.7195517

$latency
[1] 0.2591073

$precision
[1] 0.4499491

$val
[1] 661.194

$warnings
[1] "None"

$valGuessing
[1] 1022.861

$pLRtest
[1] 1.829501e-156
analyzeOneConditionDF(dg,numItemsInStream,parameterBounds(),nReplicates=2)
   efficacy   latency precision     val
1 0.7195516 0.2591074 0.4499491 661.194
                                                                                                 warnings
1 message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)
  valGuessing       pLRtest
1    1022.861 1.829501e-156

Analyse one subject, all conditions.

Warning in bind_rows_(x, .id): Unequal factor levels: coercing to character
Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Fit mixture model (if fitting not previously done and cached).

[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.23884164031854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.23884164031854 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.23884164031854 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.23884164031854 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.56272580435039 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.40078372233447 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.3198126813265 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.27932716082252 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.23884164031854 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.88582134096302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.88582134096302 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.88582134096302 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.88582134096302 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4.27440347505932 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.27440347505932 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.27440347505932 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.27440347505932 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4.27440347505932 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4.27440347505932 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.27440347505932 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4.27440347505932 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4.27440347505932 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.27440347505932 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4.27440347505932 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.27440347505932 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4.27440347505932 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4.27440347505932 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4.27440347505932 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.27440347505932 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.27440347505932 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.27440347505932 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -4.27440347505932 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4.27440347505932 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4.27440347505932 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4.27440347505932 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -4.27440347505932 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4.27440347505932 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4.27440347505932 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4.27440347505932 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -4.27440347505932 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4.27440347505932 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4.27440347505932 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.27440347505932 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.27440347505932 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4.27440347505932 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4.27440347505932 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4.27440347505932 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4.27440347505932 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -4.27440347505932 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4.27440347505932 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -4.27440347505932 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -4.27440347505932 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4.27440347505932 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -4.27440347505932 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4.08011240801117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.08011240801117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.08011240801117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.08011240801117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4.08011240801117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4.08011240801117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.08011240801117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4.08011240801117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4.08011240801117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.08011240801117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4.08011240801117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.08011240801117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4.08011240801117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4.08011240801117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4.08011240801117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.08011240801117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.08011240801117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.08011240801117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -4.08011240801117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4.08011240801117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4.08011240801117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4.08011240801117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -4.08011240801117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4.08011240801117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4.08011240801117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4.08011240801117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -4.08011240801117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4.08011240801117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4.08011240801117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.08011240801117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.08011240801117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4.08011240801117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4.08011240801117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4.08011240801117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4.08011240801117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -4.08011240801117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4.08011240801117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -4.08011240801117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -4.08011240801117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4.08011240801117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -4.08011240801117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.98296687448709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.98296687448709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.98296687448709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.98296687448709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.98296687448709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.98296687448709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.98296687448709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.98296687448709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.98296687448709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.98296687448709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.98296687448709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.98296687448709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.98296687448709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.98296687448709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.98296687448709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.98296687448709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.98296687448709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.98296687448709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.98296687448709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.98296687448709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.98296687448709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.98296687448709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.98296687448709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.98296687448709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.98296687448709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.98296687448709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.98296687448709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.98296687448709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.98296687448709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.98296687448709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.98296687448709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.98296687448709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.98296687448709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.98296687448709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.98296687448709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.98296687448709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.98296687448709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.98296687448709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.98296687448709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.98296687448709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.98296687448709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.93439410772505 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.93439410772505 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.93439410772505 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.93439410772505 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.93439410772505 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.93439410772505 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.93439410772505 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.93439410772505 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.93439410772505 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.93439410772505 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.93439410772505 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.93439410772505 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.93439410772505 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.93439410772505 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.93439410772505 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.93439410772505 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.93439410772505 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.93439410772505 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.93439410772505 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.93439410772505 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.93439410772505 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.93439410772505 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.93439410772505 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.93439410772505 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.93439410772505 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.93439410772505 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.93439410772505 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.93439410772505 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.93439410772505 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.93439410772505 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.93439410772505 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.93439410772505 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.93439410772505 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.93439410772505 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.93439410772505 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.93439410772505 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.93439410772505 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.93439410772505 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.93439410772505 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.93439410772505 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.93439410772505 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.88582134096302 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.88582134096302 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.88582134096302 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.88582134096302 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.88582134096302 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.88582134096302 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.88582134096302 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.88582134096302 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.88582134096302 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.88582134096302 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.88582134096302 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.88582134096302 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.88582134096302 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.88582134096302 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.88582134096302 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.88582134096302 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.88582134096302 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.88582134096302 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.88582134096302 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.88582134096302 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.88582134096302 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.88582134096302 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.88582134096302 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.88582134096302 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.88582134096302 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.88582134096302 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.88582134096302 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.88582134096302 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.88582134096302 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.88582134096302 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.88582134096302 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.88582134096302 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.88582134096302 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.126564754031402 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.126564754031402 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.126564754031402 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.126564754031402 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.139221229434543 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.139221229434543 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.139221229434543 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.139221229434543 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.139221229434543 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.139221229434543 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.139221229434543 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.139221229434543 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.139221229434543 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.139221229434543 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.139221229434543 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.139221229434543 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.139221229434543 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.139221229434543 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.139221229434543 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.139221229434543 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.139221229434543 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.139221229434543 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.139221229434543 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.139221229434543 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.139221229434543 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.139221229434543 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.139221229434543 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.139221229434543 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.139221229434543 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.139221229434543 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.139221229434543 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.139221229434543 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.139221229434543 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.139221229434543 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.139221229434543 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.139221229434543 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.139221229434543 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.139221229434543 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.139221229434543 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.139221229434543 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.139221229434543 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.139221229434543 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.139221229434543 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.139221229434543 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.139221229434543 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.132892991732973 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.132892991732973 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.132892991732973 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.132892991732973 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.132892991732973 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.132892991732973 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.132892991732973 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.132892991732973 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.132892991732973 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.132892991732973 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.132892991732973 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.132892991732973 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.132892991732973 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.132892991732973 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.132892991732973 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.132892991732973 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.132892991732973 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.132892991732973 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.132892991732973 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.132892991732973 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.132892991732973 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.132892991732973 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.132892991732973 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.132892991732973 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.132892991732973 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.132892991732973 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.132892991732973 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.132892991732973 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.132892991732973 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.132892991732973 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.132892991732973 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.132892991732973 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.132892991732973 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.132892991732973 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.132892991732973 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.132892991732973 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.132892991732973 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.132892991732973 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.132892991732973 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.132892991732973 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.132892991732973 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.129728872882187 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.129728872882187 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.129728872882187 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.129728872882187 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.129728872882187 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.129728872882187 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.129728872882187 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.129728872882187 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.129728872882187 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.129728872882187 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.129728872882187 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.129728872882187 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.129728872882187 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.129728872882187 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.129728872882187 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.129728872882187 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.129728872882187 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.129728872882187 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.129728872882187 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.129728872882187 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.129728872882187 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.129728872882187 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.129728872882187 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.129728872882187 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.129728872882187 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.129728872882187 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.129728872882187 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.129728872882187 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.129728872882187 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.129728872882187 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.129728872882187 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.129728872882187 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.129728872882187 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.129728872882187 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.129728872882187 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.129728872882187 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.129728872882187 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.129728872882187 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.129728872882187 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.129728872882187 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.129728872882187 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.128146813456795 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.128146813456795 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.128146813456795 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.128146813456795 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.128146813456795 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.128146813456795 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.128146813456795 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.128146813456795 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.128146813456795 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.128146813456795 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.128146813456795 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.128146813456795 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.128146813456795 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.128146813456795 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.128146813456795 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.128146813456795 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.128146813456795 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.128146813456795 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.128146813456795 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.128146813456795 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.128146813456795 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.128146813456795 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.128146813456795 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.128146813456795 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.128146813456795 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.128146813456795 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.128146813456795 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.128146813456795 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.128146813456795 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.128146813456795 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.128146813456795 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.128146813456795 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.128146813456795 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.128146813456795 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.128146813456795 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.128146813456795 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.128146813456795 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.128146813456795 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.128146813456795 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.128146813456795 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.128146813456795 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.126564754031402 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.126564754031402 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.126564754031402 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.126564754031402 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.126564754031402 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.126564754031402 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.126564754031402 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.126564754031402 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.126564754031402 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.126564754031402 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.126564754031402 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.126564754031402 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.126564754031402 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.126564754031402 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.126564754031402 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.126564754031402 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.126564754031402 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.126564754031402 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.126564754031402 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.126564754031402 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.126564754031402 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.126564754031402 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.126564754031402 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.126564754031402 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.126564754031402 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.126564754031402 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.126564754031402 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.126564754031402 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.65201055891256 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.65201055891256 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.65201055891256 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.65201055891256 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.2868095030213 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.46941003096693 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.56071029493974 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.60636042692615 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.65201055891256 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.23441716962079 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.23441716962079 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.23441716962079 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.23441716962079 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.55785888658287 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.39613802810183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.31527759886131 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.27484738424105 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.23441716962079 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.02322422536811 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.02322422536811 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.02322422536811 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.02322422536811 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.22554664790492 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.12438543663652 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.07380483100231 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.04851452818521 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.02322422536811 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.45958749513134 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.45958749513134 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.45958749513134 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.45958749513134 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.80554624464447 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.80554624464447 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.80554624464447 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.80554624464447 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.80554624464447 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.80554624464447 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.80554624464447 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.80554624464447 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.80554624464447 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.80554624464447 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.80554624464447 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.80554624464447 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.80554624464447 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.80554624464447 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.80554624464447 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.80554624464447 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.80554624464447 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.80554624464447 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.80554624464447 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.80554624464447 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.80554624464447 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.80554624464447 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.80554624464447 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.80554624464447 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.80554624464447 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.80554624464447 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.80554624464447 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.80554624464447 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.80554624464447 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.80554624464447 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.80554624464447 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.80554624464447 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.80554624464447 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.80554624464447 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.80554624464447 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.80554624464447 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.80554624464447 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.80554624464447 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.80554624464447 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.80554624464447 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.80554624464447 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.6325668698879 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.6325668698879 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.6325668698879 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.6325668698879 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.6325668698879 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.6325668698879 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.6325668698879 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.6325668698879 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.6325668698879 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.6325668698879 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.6325668698879 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.6325668698879 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.6325668698879 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.6325668698879 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.6325668698879 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.6325668698879 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.6325668698879 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.6325668698879 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.6325668698879 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.6325668698879 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.6325668698879 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.6325668698879 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.6325668698879 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.6325668698879 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.6325668698879 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.6325668698879 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.6325668698879 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.6325668698879 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.6325668698879 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.6325668698879 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.6325668698879 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.6325668698879 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.6325668698879 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.6325668698879 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.6325668698879 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.6325668698879 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.6325668698879 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.6325668698879 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.6325668698879 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.6325668698879 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.6325668698879 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.54607718250962 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.54607718250962 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.54607718250962 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.54607718250962 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.54607718250962 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.54607718250962 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.54607718250962 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.54607718250962 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.54607718250962 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.54607718250962 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.54607718250962 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.54607718250962 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.54607718250962 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.54607718250962 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.54607718250962 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.54607718250962 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.54607718250962 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.54607718250962 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.54607718250962 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.54607718250962 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.54607718250962 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.54607718250962 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.54607718250962 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.54607718250962 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.54607718250962 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.54607718250962 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.54607718250962 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.54607718250962 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.54607718250962 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.54607718250962 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.54607718250962 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.54607718250962 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.54607718250962 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.54607718250962 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.54607718250962 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.54607718250962 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.54607718250962 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.54607718250962 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.54607718250962 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.54607718250962 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.54607718250962 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.50283233882048 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50283233882048 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50283233882048 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50283233882048 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50283233882048 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.50283233882048 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.50283233882048 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.50283233882048 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.50283233882048 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.50283233882048 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50283233882048 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.50283233882048 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.50283233882048 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.50283233882048 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50283233882048 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50283233882048 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.50283233882048 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50283233882048 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.50283233882048 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.50283233882048 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.50283233882048 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.50283233882048 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.50283233882048 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.50283233882048 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.50283233882048 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.50283233882048 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.50283233882048 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.50283233882048 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.50283233882048 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50283233882048 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.50283233882048 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.50283233882048 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.50283233882048 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.50283233882048 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.50283233882048 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.50283233882048 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.50283233882048 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.50283233882048 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.50283233882048 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.50283233882048 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.50283233882048 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.45958749513134 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.45958749513134 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.45958749513134 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.45958749513134 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.45958749513134 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.45958749513134 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.45958749513134 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.45958749513134 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.45958749513134 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.45958749513134 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.45958749513134 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.45958749513134 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.45958749513134 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.45958749513134 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.45958749513134 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.45958749513134 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.45958749513134 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.45958749513134 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.45958749513134 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.45958749513134 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.45958749513134 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.45958749513134 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.45958749513134 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.45958749513134 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.45958749513134 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.45958749513134 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.45958749513134 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.45958749513134 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.45958749513134 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.45958749513134 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.45958749513134 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.45958749513134 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.45958749513134 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.24647754977412 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.24647754977412 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.24647754977412 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.24647754977412 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.47112530475153 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.35880142726282 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.30263948851847 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.27455851914629 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.24647754977412 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.320448760691482 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.320448760691482 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.320448760691482 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.320448760691482 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.35249363676063 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.336471198726056 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.328459979708769 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.324454370200125 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.320448760691482 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.77370316131981 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.77370316131981 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.77370316131981 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.77370316131981 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.15107347745179 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.15107347745179 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.15107347745179 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.15107347745179 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.15107347745179 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.15107347745179 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.15107347745179 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.15107347745179 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.15107347745179 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4.15107347745179 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.15107347745179 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.15107347745179 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.15107347745179 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.15107347745179 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.15107347745179 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.15107347745179 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.15107347745179 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.15107347745179 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -4.15107347745179 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4.15107347745179 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4.15107347745179 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4.15107347745179 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -4.15107347745179 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4.15107347745179 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4.15107347745179 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4.15107347745179 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -4.15107347745179 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4.15107347745179 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4.15107347745179 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.15107347745179 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.15107347745179 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4.15107347745179 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4.15107347745179 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4.15107347745179 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4.15107347745179 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -4.15107347745179 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4.15107347745179 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -4.15107347745179 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -4.15107347745179 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4.15107347745179 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -4.15107347745179 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.9623883193858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.9623883193858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.9623883193858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.9623883193858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.9623883193858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.9623883193858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.9623883193858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.9623883193858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.9623883193858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.9623883193858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.9623883193858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.9623883193858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.9623883193858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.9623883193858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.9623883193858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.9623883193858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.9623883193858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.9623883193858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.9623883193858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.9623883193858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.9623883193858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.9623883193858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.9623883193858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.9623883193858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.9623883193858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.9623883193858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.9623883193858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.9623883193858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.9623883193858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.9623883193858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.9623883193858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.9623883193858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.9623883193858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.9623883193858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.9623883193858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.9623883193858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.9623883193858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.9623883193858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.9623883193858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.9623883193858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.9623883193858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.8680457403528 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.8680457403528 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.8680457403528 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.8680457403528 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.8680457403528 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.8680457403528 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.8680457403528 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.8680457403528 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.8680457403528 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.8680457403528 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.8680457403528 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.8680457403528 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.8680457403528 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.8680457403528 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.8680457403528 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.8680457403528 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.8680457403528 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.8680457403528 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.8680457403528 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.8680457403528 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.8680457403528 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.8680457403528 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.8680457403528 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.8680457403528 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.8680457403528 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.8680457403528 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.8680457403528 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.8680457403528 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.8680457403528 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.8680457403528 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.8680457403528 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.8680457403528 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.8680457403528 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.8680457403528 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.8680457403528 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.8680457403528 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.8680457403528 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.8680457403528 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.8680457403528 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.8680457403528 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.8680457403528 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.82087445083631 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.82087445083631 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.82087445083631 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.82087445083631 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.82087445083631 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.82087445083631 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.82087445083631 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.82087445083631 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.82087445083631 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.82087445083631 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.82087445083631 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.82087445083631 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.82087445083631 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.82087445083631 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.82087445083631 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.82087445083631 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.82087445083631 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.82087445083631 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.82087445083631 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.82087445083631 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.82087445083631 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.82087445083631 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.82087445083631 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.82087445083631 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.82087445083631 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.82087445083631 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.82087445083631 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.82087445083631 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.82087445083631 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.82087445083631 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.82087445083631 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.82087445083631 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.82087445083631 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.82087445083631 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.82087445083631 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.82087445083631 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.82087445083631 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.82087445083631 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.82087445083631 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.82087445083631 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.82087445083631 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.77370316131981 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.77370316131981 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.77370316131981 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.77370316131981 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.77370316131981 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.77370316131981 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.77370316131981 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.77370316131981 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.77370316131981 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.77370316131981 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.77370316131981 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.77370316131981 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.77370316131981 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.77370316131981 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.77370316131981 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.77370316131981 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.77370316131981 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.77370316131981 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.77370316131981 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.77370316131981 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.77370316131981 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.77370316131981 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.77370316131981 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.77370316131981 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.77370316131981 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.77370316131981 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.77370316131981 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.77370316131981 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.77370316131981 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.72219830830737 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.72219830830737 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.72219830830737 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.72219830830737 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.34997847747663 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.34997847747663 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.34997847747663 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.34997847747663 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.34997847747663 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.34997847747663 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.34997847747663 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.34997847747663 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.34997847747663 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.34997847747663 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.34997847747663 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.34997847747663 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.34997847747663 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.34997847747663 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.34997847747663 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.34997847747663 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.34997847747663 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.34997847747663 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.34997847747663 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.34997847747663 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.34997847747663 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.34997847747663 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.34997847747663 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.34997847747663 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.34997847747663 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.34997847747663 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.34997847747663 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.34997847747663 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.34997847747663 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.34997847747663 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.34997847747663 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.34997847747663 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.34997847747663 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.34997847747663 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.34997847747663 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.34997847747663 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.34997847747663 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.34997847747663 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.34997847747663 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.34997847747663 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.34997847747663 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.536088392892 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.536088392892 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.536088392892 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.536088392892 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.536088392892 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.536088392892 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.536088392892 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.536088392892 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.536088392892 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.536088392892 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.536088392892 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.536088392892 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.536088392892 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.536088392892 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.536088392892 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.536088392892 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.536088392892 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.536088392892 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.536088392892 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.536088392892 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.536088392892 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.536088392892 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.536088392892 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.536088392892 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.536088392892 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.536088392892 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.536088392892 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.536088392892 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.536088392892 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.536088392892 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.536088392892 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.536088392892 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.536088392892 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.536088392892 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.536088392892 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.536088392892 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.536088392892 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.536088392892 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.536088392892 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.536088392892 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.536088392892 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.62914335059969 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.62914335059969 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.62914335059969 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.62914335059969 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.62914335059969 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.62914335059969 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.62914335059969 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.62914335059969 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.62914335059969 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.62914335059969 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.62914335059969 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.62914335059969 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.62914335059969 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.62914335059969 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.62914335059969 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.62914335059969 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.62914335059969 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.62914335059969 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.62914335059969 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.62914335059969 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.62914335059969 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.62914335059969 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.62914335059969 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.62914335059969 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.62914335059969 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.62914335059969 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.62914335059969 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.62914335059969 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.62914335059969 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.62914335059969 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.62914335059969 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.62914335059969 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.62914335059969 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.62914335059969 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.62914335059969 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.62914335059969 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.62914335059969 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.62914335059969 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.62914335059969 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.62914335059969 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.62914335059969 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.67567082945353 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.67567082945353 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.67567082945353 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.67567082945353 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.67567082945353 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.67567082945353 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.67567082945353 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.67567082945353 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.67567082945353 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.67567082945353 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.67567082945353 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.67567082945353 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.67567082945353 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.67567082945353 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.67567082945353 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.67567082945353 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.67567082945353 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.67567082945353 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.67567082945353 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.67567082945353 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.67567082945353 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.67567082945353 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.67567082945353 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.67567082945353 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.67567082945353 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.67567082945353 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.67567082945353 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.67567082945353 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.67567082945353 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.67567082945353 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.67567082945353 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.67567082945353 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.67567082945353 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.67567082945353 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.67567082945353 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.67567082945353 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.67567082945353 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.67567082945353 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.67567082945353 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.67567082945353 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.67567082945353 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.72219830830737 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.72219830830737 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.72219830830737 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.72219830830737 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.72219830830737 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.72219830830737 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.72219830830737 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.72219830830737 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.72219830830737 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.72219830830737 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.72219830830737 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.72219830830737 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.72219830830737 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.72219830830737 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.72219830830737 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.72219830830737 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.72219830830737 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.72219830830737 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.72219830830737 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.72219830830737 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.72219830830737 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.72219830830737 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.72219830830737 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.72219830830737 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.72219830830737 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.72219830830737 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.72219830830737 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.72219830830737 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.72219830830737 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 2.83182092245985 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 2.83182092245985 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 2.83182092245985 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 2.83182092245985 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.54863883021387 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.54863883021387 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 2.54863883021387 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.54863883021387 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.54863883021387 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.54863883021387 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.54863883021387 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.54863883021387 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.54863883021387 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.54863883021387 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.54863883021387 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.54863883021387 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.54863883021387 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.54863883021387 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 2.54863883021387 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 2.54863883021387 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.54863883021387 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.54863883021387 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 2.54863883021387 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 2.54863883021387 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 2.54863883021387 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 2.54863883021387 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 2.54863883021387 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 2.54863883021387 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 2.54863883021387 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 2.54863883021387 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 2.54863883021387 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 2.54863883021387 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.54863883021387 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.54863883021387 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.54863883021387 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 2.54863883021387 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 2.54863883021387 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.54863883021387 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.54863883021387 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 2.54863883021387 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 2.54863883021387 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 2.54863883021387 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 2.54863883021387 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 2.54863883021387 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 2.54863883021387 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.69022987633686 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.69022987633686 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 2.69022987633686 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.69022987633686 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.69022987633686 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.69022987633686 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.69022987633686 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.69022987633686 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.69022987633686 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.69022987633686 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.69022987633686 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.69022987633686 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.69022987633686 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.69022987633686 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 2.69022987633686 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 2.69022987633686 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.69022987633686 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.69022987633686 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 2.69022987633686 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 2.69022987633686 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 2.69022987633686 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 2.69022987633686 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 2.69022987633686 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 2.69022987633686 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 2.69022987633686 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 2.69022987633686 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 2.69022987633686 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 2.69022987633686 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.69022987633686 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.69022987633686 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.69022987633686 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 2.69022987633686 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 2.69022987633686 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.69022987633686 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.69022987633686 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 2.69022987633686 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 2.69022987633686 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 2.69022987633686 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 2.69022987633686 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 2.69022987633686 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 2.69022987633686 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.76102539939836 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.76102539939836 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 2.76102539939836 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.76102539939836 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.76102539939836 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.76102539939836 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.76102539939836 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.76102539939836 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.76102539939836 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.76102539939836 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.76102539939836 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.76102539939836 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.76102539939836 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.76102539939836 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 2.76102539939836 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 2.76102539939836 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.76102539939836 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.76102539939836 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 2.76102539939836 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 2.76102539939836 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 2.76102539939836 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 2.76102539939836 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 2.76102539939836 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 2.76102539939836 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 2.76102539939836 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 2.76102539939836 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 2.76102539939836 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 2.76102539939836 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.76102539939836 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.76102539939836 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.76102539939836 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 2.76102539939836 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 2.76102539939836 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.76102539939836 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.76102539939836 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 2.76102539939836 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 2.76102539939836 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 2.76102539939836 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 2.76102539939836 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 2.76102539939836 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 2.76102539939836 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.7964231609291 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.7964231609291 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 2.7964231609291 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.7964231609291 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.7964231609291 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.7964231609291 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.7964231609291 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.7964231609291 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.7964231609291 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.7964231609291 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.7964231609291 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.7964231609291 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.7964231609291 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.7964231609291 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 2.7964231609291 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 2.7964231609291 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.7964231609291 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.7964231609291 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 2.7964231609291 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 2.7964231609291 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 2.7964231609291 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 2.7964231609291 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 2.7964231609291 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 2.7964231609291 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 2.7964231609291 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 2.7964231609291 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 2.7964231609291 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 2.7964231609291 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.7964231609291 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.7964231609291 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.7964231609291 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 2.7964231609291 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 2.7964231609291 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.7964231609291 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.7964231609291 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 2.7964231609291 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 2.7964231609291 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 2.7964231609291 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 2.7964231609291 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 2.7964231609291 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 2.7964231609291 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.83182092245985 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 2.83182092245985 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.83182092245985 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.83182092245985 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 2.83182092245985 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 2.83182092245985 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.83182092245985 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 2.83182092245985 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 2.83182092245985 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 2.83182092245985 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 2.83182092245985 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 2.83182092245985 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 2.83182092245985 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 2.83182092245985 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 2.83182092245985 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 2.83182092245985 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 2.83182092245985 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.83182092245985 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.83182092245985 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.83182092245985 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 2.83182092245985 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 2.83182092245985 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.83182092245985 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.83182092245985 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 2.83182092245985 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 2.83182092245985 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 2.83182092245985 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 2.83182092245985 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 2.83182092245985 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 2.83182092245985 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.69942696811141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.69942696811141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.69942696811141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.69942696811141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.96936966492255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.83439831651698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.7669126423142 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.7331698052128 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.69942696811141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.65339573531141 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.65339573531141 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.65339573531141 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.65339573531141 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.91873530884255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.91873530884255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.91873530884255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.91873530884255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.91873530884255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.91873530884255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.91873530884255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.91873530884255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.91873530884255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.91873530884255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.91873530884255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.91873530884255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.91873530884255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.91873530884255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.91873530884255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.91873530884255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.91873530884255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.91873530884255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.91873530884255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.91873530884255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.91873530884255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.91873530884255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.91873530884255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.91873530884255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.91873530884255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.91873530884255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.91873530884255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.91873530884255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.91873530884255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.91873530884255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.91873530884255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.91873530884255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.91873530884255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.91873530884255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.91873530884255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.91873530884255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.91873530884255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.91873530884255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.91873530884255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.91873530884255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.91873530884255 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.78606552207698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.78606552207698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.78606552207698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.78606552207698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.78606552207698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.78606552207698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.78606552207698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.78606552207698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.78606552207698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.78606552207698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.78606552207698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.78606552207698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.78606552207698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.78606552207698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.78606552207698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.78606552207698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.78606552207698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.78606552207698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.78606552207698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.78606552207698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.78606552207698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.78606552207698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.78606552207698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.78606552207698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.78606552207698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.78606552207698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.78606552207698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.78606552207698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.78606552207698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.78606552207698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.78606552207698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.78606552207698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.78606552207698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.78606552207698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.78606552207698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.78606552207698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.78606552207698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.78606552207698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.78606552207698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.78606552207698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.78606552207698 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.71973062869419 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.71973062869419 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.71973062869419 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.71973062869419 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.71973062869419 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.71973062869419 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.71973062869419 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.71973062869419 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.71973062869419 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.71973062869419 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.71973062869419 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.71973062869419 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.71973062869419 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.71973062869419 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.71973062869419 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.71973062869419 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.71973062869419 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.71973062869419 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.71973062869419 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.71973062869419 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.71973062869419 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.71973062869419 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.71973062869419 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.71973062869419 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.71973062869419 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.71973062869419 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.71973062869419 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.71973062869419 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.71973062869419 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.71973062869419 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.71973062869419 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.71973062869419 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.71973062869419 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.71973062869419 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.71973062869419 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.71973062869419 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.71973062869419 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.71973062869419 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.71973062869419 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.71973062869419 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.71973062869419 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.6865631820028 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.6865631820028 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.6865631820028 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.6865631820028 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.6865631820028 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.6865631820028 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.6865631820028 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.6865631820028 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.6865631820028 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.6865631820028 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.6865631820028 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.6865631820028 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.6865631820028 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.6865631820028 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.6865631820028 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.6865631820028 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.6865631820028 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.6865631820028 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.6865631820028 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.6865631820028 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.6865631820028 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.6865631820028 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.6865631820028 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.6865631820028 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.6865631820028 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.6865631820028 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.6865631820028 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.6865631820028 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.6865631820028 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.6865631820028 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.6865631820028 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.6865631820028 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.6865631820028 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.6865631820028 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.6865631820028 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.6865631820028 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.6865631820028 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.6865631820028 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.6865631820028 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.6865631820028 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.6865631820028 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.65339573531141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.65339573531141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.65339573531141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.65339573531141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.65339573531141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.65339573531141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.65339573531141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.65339573531141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.65339573531141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.65339573531141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.65339573531141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.65339573531141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.65339573531141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.65339573531141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.65339573531141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.65339573531141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.65339573531141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.65339573531141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65339573531141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.65339573531141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.65339573531141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.65339573531141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.65339573531141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.65339573531141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.65339573531141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.65339573531141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.65339573531141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.65339573531141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.65339573531141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.65339573531141 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.99517937502055 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.99517937502055 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.99517937502055 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.99517937502055 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.5956614375185 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.5956614375185 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.5956614375185 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.5956614375185 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.5956614375185 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.5956614375185 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.5956614375185 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.5956614375185 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.5956614375185 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.5956614375185 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.5956614375185 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.5956614375185 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.5956614375185 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.5956614375185 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.5956614375185 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.5956614375185 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.5956614375185 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.5956614375185 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.5956614375185 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.5956614375185 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.5956614375185 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.5956614375185 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.5956614375185 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.5956614375185 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.5956614375185 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.5956614375185 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.5956614375185 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.5956614375185 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.5956614375185 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.5956614375185 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.5956614375185 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.5956614375185 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.5956614375185 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.5956614375185 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.5956614375185 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.5956614375185 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.5956614375185 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.5956614375185 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.5956614375185 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.5956614375185 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.5956614375185 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.79542040626952 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.79542040626952 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.79542040626952 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.79542040626952 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.79542040626952 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.79542040626952 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.79542040626952 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.79542040626952 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.79542040626952 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.79542040626952 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.79542040626952 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.79542040626952 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.79542040626952 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.79542040626952 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.79542040626952 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.79542040626952 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.79542040626952 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.79542040626952 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.79542040626952 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.79542040626952 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.79542040626952 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.79542040626952 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.79542040626952 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.79542040626952 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.79542040626952 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.79542040626952 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.79542040626952 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.79542040626952 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.79542040626952 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.79542040626952 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.79542040626952 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.79542040626952 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.79542040626952 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.79542040626952 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.79542040626952 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.79542040626952 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.79542040626952 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.79542040626952 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.79542040626952 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.79542040626952 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.79542040626952 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.89529989064504 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.89529989064504 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.89529989064504 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.89529989064504 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.89529989064504 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.89529989064504 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.89529989064504 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.89529989064504 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.89529989064504 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.89529989064504 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.89529989064504 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.89529989064504 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.89529989064504 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.89529989064504 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.89529989064504 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.89529989064504 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.89529989064504 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.89529989064504 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.89529989064504 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.89529989064504 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.89529989064504 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.89529989064504 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.89529989064504 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.89529989064504 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.89529989064504 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.89529989064504 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.89529989064504 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.89529989064504 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.89529989064504 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89529989064504 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.89529989064504 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.89529989064504 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.89529989064504 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.89529989064504 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.89529989064504 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.89529989064504 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.89529989064504 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.89529989064504 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.89529989064504 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.89529989064504 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.89529989064504 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.94523963283279 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.94523963283279 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.94523963283279 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.94523963283279 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.94523963283279 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.94523963283279 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.94523963283279 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.94523963283279 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.94523963283279 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.94523963283279 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.94523963283279 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.94523963283279 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.94523963283279 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.94523963283279 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.94523963283279 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.94523963283279 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.94523963283279 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.94523963283279 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.94523963283279 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.94523963283279 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.94523963283279 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.94523963283279 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.94523963283279 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.94523963283279 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.94523963283279 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.94523963283279 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.94523963283279 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.94523963283279 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.94523963283279 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.94523963283279 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.94523963283279 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.94523963283279 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.94523963283279 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.94523963283279 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.94523963283279 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.94523963283279 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.94523963283279 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.94523963283279 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.94523963283279 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.94523963283279 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.94523963283279 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.99517937502055 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.99517937502055 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.99517937502055 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.99517937502055 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.99517937502055 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.99517937502055 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.99517937502055 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.99517937502055 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.99517937502055 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.99517937502055 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.99517937502055 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.99517937502055 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.99517937502055 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.99517937502055 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.99517937502055 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.99517937502055 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.99517937502055 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.99517937502055 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.99517937502055 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.99517937502055 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.99517937502055 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.99517937502055 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.99517937502055 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.99517937502055 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.99517937502055 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.99517937502055 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.99517937502055 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.99517937502055 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.99517937502055 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.99517937502055 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.99517937502055 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.99517937502055 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.99517937502055 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.99517937502055 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.99517937502055 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.99517937502055 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.99517937502055 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.99517937502055 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.99517937502055 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.99517937502055 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.99517937502055 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.13696288073431 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.13696288073431 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.13696288073431 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.13696288073431 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 2.82326659266088 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 2.9801147366976 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.05853880871596 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.09775084472513 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.13696288073431 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -1.94948593202996 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -1.94948593202996 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -1.94948593202996 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -1.94948593202996 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.14443452523295 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.04696022863145 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -1.99822308033071 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -1.97385450618033 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -1.94948593202996 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 1.37088725286461 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 1.37088725286461 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 1.37088725286461 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 1.37088725286461 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 1.23379852757815 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 1.30234289022138 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 1.33661507154299 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 1.3537511622038 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 1.37088725286461 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 1.19081876787743 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 1.19081876787743 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 1.19081876787743 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.07173689108969 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.07173689108969 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.07173689108969 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.07173689108969 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.07173689108969 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.07173689108969 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 1.07173689108969 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.07173689108969 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 1.07173689108969 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.07173689108969 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.07173689108969 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.07173689108969 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.07173689108969 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.07173689108969 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.07173689108969 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.07173689108969 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.07173689108969 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.07173689108969 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 1.07173689108969 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 1.07173689108969 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 1.07173689108969 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 1.07173689108969 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 1.07173689108969 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 1.07173689108969 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 1.07173689108969 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.07173689108969 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.07173689108969 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 1.07173689108969 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.07173689108969 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.07173689108969 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.07173689108969 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.07173689108969 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.07173689108969 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 1.07173689108969 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 1.07173689108969 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 1.07173689108969 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 1.07173689108969 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 1.07173689108969 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 1.07173689108969 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 1.07173689108969 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 1.07173689108969 -8.60863641445977e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.13127782948356 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.13127782948356 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.13127782948356 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.13127782948356 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.13127782948356 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.13127782948356 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 1.13127782948356 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.13127782948356 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 1.13127782948356 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.13127782948356 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.13127782948356 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.13127782948356 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.13127782948356 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.13127782948356 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.13127782948356 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.13127782948356 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.13127782948356 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.13127782948356 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 1.13127782948356 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 1.13127782948356 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 1.13127782948356 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 1.13127782948356 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 1.13127782948356 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 1.13127782948356 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 1.13127782948356 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.13127782948356 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.13127782948356 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 1.13127782948356 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.13127782948356 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.13127782948356 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.13127782948356 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.13127782948356 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.13127782948356 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 1.13127782948356 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 1.13127782948356 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 1.13127782948356 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 1.13127782948356 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 1.13127782948356 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 1.13127782948356 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 1.13127782948356 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 1.13127782948356 -3.53133843748532e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.1610482986805 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.1610482986805 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.1610482986805 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.1610482986805 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.1610482986805 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.1610482986805 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 1.1610482986805 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.1610482986805 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 1.1610482986805 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.1610482986805 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.1610482986805 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.1610482986805 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.1610482986805 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.1610482986805 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.1610482986805 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.1610482986805 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.1610482986805 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.1610482986805 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 1.1610482986805 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 1.1610482986805 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 1.1610482986805 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 1.1610482986805 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 1.1610482986805 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 1.1610482986805 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 1.1610482986805 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.1610482986805 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.1610482986805 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 1.1610482986805 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.1610482986805 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.1610482986805 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.1610482986805 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.1610482986805 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.1610482986805 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 1.1610482986805 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 1.1610482986805 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 1.1610482986805 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 1.1610482986805 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 1.1610482986805 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 1.1610482986805 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 1.1610482986805 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 1.1610482986805 -9.92689448998087e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.19081876787743 -8.45419505646481e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.19081876787743 -8.45419505646481e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.19081876787743 -8.45419505646481e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.19081876787743 -8.45419505646481e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.19081876787743 -8.45419505646481e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.19081876787743 -8.45419505646481e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 1.19081876787743 -8.45419505646481e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.19081876787743 -8.45419505646481e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 1.19081876787743 -8.45419505646481e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.19081876787743 -8.45419505646481e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.19081876787743 -8.45419505646481e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.19081876787743 -8.45419505646481e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.19081876787743 -8.45419505646481e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.19081876787743 -8.45419505646481e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.19081876787743 -8.45419505646481e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.19081876787743 -8.45419505646481e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.19081876787743 -8.45419505646481e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.19081876787743 -8.45419505646481e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 1.19081876787743 -8.45419505646481e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 1.19081876787743 -8.45419505646481e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 1.19081876787743 -8.45419505646481e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 1.19081876787743 -8.45419505646481e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 1.19081876787743 -8.45419505646481e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 1.19081876787743 -8.45419505646481e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 1.19081876787743 -8.45419505646481e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.19081876787743 -8.45419505646481e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.19081876787743 -8.45419505646481e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 1.19081876787743 -8.45419505646481e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.19081876787743 -8.45419505646481e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.19081876787743 -8.45419505646481e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.19081876787743 -8.45419505646481e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.19081876787743 -8.45419505646481e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.19081876787743 -8.45419505646481e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 1.19081876787743 -8.45419505646481e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 1.19081876787743 -8.45419505646481e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 1.19081876787743 -8.45419505646481e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 1.19081876787743 -8.45419505646481e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 1.19081876787743 -8.45419505646481e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 1.19081876787743 -8.45419505646481e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 1.19081876787743 -8.45419505646481e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 1.19081876787743 -8.45419505646481e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.1236356798309 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.1236356798309 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.1236356798309 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.1236356798309 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.33599924781398 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.33599924781398 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.33599924781398 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.33599924781398 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.33599924781398 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.33599924781398 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.33599924781398 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.33599924781398 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.33599924781398 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.33599924781398 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.33599924781398 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.33599924781398 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.33599924781398 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.33599924781398 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.33599924781398 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.33599924781398 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.33599924781398 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.33599924781398 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.33599924781398 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.33599924781398 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.33599924781398 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.33599924781398 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.33599924781398 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.33599924781398 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.33599924781398 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.33599924781398 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.33599924781398 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.33599924781398 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.33599924781398 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.33599924781398 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.33599924781398 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.33599924781398 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.33599924781398 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.33599924781398 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.33599924781398 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.33599924781398 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.33599924781398 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.33599924781398 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.33599924781398 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.33599924781398 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.22981746382244 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.22981746382244 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.22981746382244 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.22981746382244 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.22981746382244 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.22981746382244 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.22981746382244 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.22981746382244 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.22981746382244 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.22981746382244 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.22981746382244 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.22981746382244 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.22981746382244 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.22981746382244 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.22981746382244 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.22981746382244 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.22981746382244 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.22981746382244 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.22981746382244 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.22981746382244 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.22981746382244 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.22981746382244 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.22981746382244 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.22981746382244 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.22981746382244 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.22981746382244 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.22981746382244 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.22981746382244 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.22981746382244 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.22981746382244 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.22981746382244 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.22981746382244 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.22981746382244 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.22981746382244 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.22981746382244 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.22981746382244 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.22981746382244 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.22981746382244 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.22981746382244 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.22981746382244 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.17672657182667 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.17672657182667 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.17672657182667 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.17672657182667 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.17672657182667 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.17672657182667 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.17672657182667 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.17672657182667 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.17672657182667 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.17672657182667 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.17672657182667 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.17672657182667 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.17672657182667 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.17672657182667 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.17672657182667 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.17672657182667 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.17672657182667 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.17672657182667 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.17672657182667 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.17672657182667 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.17672657182667 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.17672657182667 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.17672657182667 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.17672657182667 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.17672657182667 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.17672657182667 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.17672657182667 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.17672657182667 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.17672657182667 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.17672657182667 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.17672657182667 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.17672657182667 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.17672657182667 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.17672657182667 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.17672657182667 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.17672657182667 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.17672657182667 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.17672657182667 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.17672657182667 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.17672657182667 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.15018112582878 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.15018112582878 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.15018112582878 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.15018112582878 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.15018112582878 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.15018112582878 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.15018112582878 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.15018112582878 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.15018112582878 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.15018112582878 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.15018112582878 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.15018112582878 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.15018112582878 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.15018112582878 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.15018112582878 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.15018112582878 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.15018112582878 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.15018112582878 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.15018112582878 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.15018112582878 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.15018112582878 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.15018112582878 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.15018112582878 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.15018112582878 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.15018112582878 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.15018112582878 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.15018112582878 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.15018112582878 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.15018112582878 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.15018112582878 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.15018112582878 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.15018112582878 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.15018112582878 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.15018112582878 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.15018112582878 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.15018112582878 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.15018112582878 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.15018112582878 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.15018112582878 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.15018112582878 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.1236356798309 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.1236356798309 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.1236356798309 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.1236356798309 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.1236356798309 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.1236356798309 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.1236356798309 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.1236356798309 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.1236356798309 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.1236356798309 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.1236356798309 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.1236356798309 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.1236356798309 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.1236356798309 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.1236356798309 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.1236356798309 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.1236356798309 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.1236356798309 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.1236356798309 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.1236356798309 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.1236356798309 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.1236356798309 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.1236356798309 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.1236356798309 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.1236356798309 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.1236356798309 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.1236356798309 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.5149143209858 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.5149143209858 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.5149143209858 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.5149143209858 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.76640575308438 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.64066003703509 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.57778717901045 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.54635074999813 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.5149143209858 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.89082000555503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.89082000555503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.89082000555503 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.89082000555503 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.17990200611053 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.17990200611053 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.17990200611053 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.17990200611053 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.17990200611053 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.17990200611053 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.17990200611053 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.17990200611053 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.17990200611053 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.17990200611053 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.17990200611053 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.17990200611053 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.17990200611053 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.17990200611053 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.17990200611053 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.17990200611053 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.17990200611053 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.17990200611053 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.17990200611053 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.17990200611053 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.17990200611053 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.17990200611053 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.17990200611053 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.17990200611053 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.17990200611053 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.17990200611053 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.17990200611053 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.17990200611053 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.17990200611053 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.17990200611053 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.17990200611053 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.17990200611053 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.17990200611053 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.17990200611053 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.17990200611053 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.17990200611053 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.17990200611053 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.17990200611053 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.17990200611053 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.17990200611053 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.17990200611053 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.03536100583278 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.03536100583278 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.03536100583278 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.03536100583278 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.03536100583278 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.03536100583278 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.03536100583278 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.03536100583278 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.03536100583278 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.03536100583278 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.03536100583278 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.03536100583278 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.03536100583278 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.03536100583278 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.03536100583278 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.03536100583278 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.03536100583278 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.03536100583278 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.03536100583278 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.03536100583278 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.03536100583278 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.03536100583278 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.03536100583278 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.03536100583278 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.03536100583278 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.03536100583278 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.03536100583278 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.03536100583278 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.03536100583278 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.03536100583278 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.03536100583278 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.03536100583278 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.03536100583278 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.03536100583278 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.03536100583278 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.03536100583278 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.03536100583278 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.03536100583278 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.03536100583278 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.03536100583278 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.03536100583278 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.9630905056939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.9630905056939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.9630905056939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.9630905056939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.9630905056939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.9630905056939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.9630905056939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.9630905056939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.9630905056939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.9630905056939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.9630905056939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.9630905056939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.9630905056939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.9630905056939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.9630905056939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.9630905056939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.9630905056939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.9630905056939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.9630905056939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.9630905056939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.9630905056939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.9630905056939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.9630905056939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.9630905056939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.9630905056939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.9630905056939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.9630905056939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.9630905056939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.9630905056939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.9630905056939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.9630905056939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.9630905056939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.9630905056939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.9630905056939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.9630905056939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.9630905056939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.9630905056939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.9630905056939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.9630905056939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.9630905056939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.9630905056939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.92695525562447 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.92695525562447 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.92695525562447 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.92695525562447 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.92695525562447 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.92695525562447 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.92695525562447 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.92695525562447 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.92695525562447 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.92695525562447 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.92695525562447 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.92695525562447 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.92695525562447 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.92695525562447 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.92695525562447 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.92695525562447 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.92695525562447 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.92695525562447 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.92695525562447 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.92695525562447 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.92695525562447 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.92695525562447 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.92695525562447 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.92695525562447 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.92695525562447 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.92695525562447 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.92695525562447 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.92695525562447 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.92695525562447 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.92695525562447 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.92695525562447 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.92695525562447 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.92695525562447 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.92695525562447 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.92695525562447 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.92695525562447 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.92695525562447 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.92695525562447 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.92695525562447 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.92695525562447 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.92695525562447 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.89082000555503 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.89082000555503 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.89082000555503 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.89082000555503 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.89082000555503 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.89082000555503 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.89082000555503 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.89082000555503 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.89082000555503 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.89082000555503 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.89082000555503 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.89082000555503 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.89082000555503 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.89082000555503 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.89082000555503 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.89082000555503 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.89082000555503 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.89082000555503 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.89082000555503 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.89082000555503 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.89082000555503 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.89082000555503 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.89082000555503 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.89082000555503 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.89082000555503 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.89082000555503 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.89082000555503 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.89082000555503 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.89082000555503 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.276381740980691 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.276381740980691 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.276381740980691 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.276381740980691 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.30401991507876 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.30401991507876 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.30401991507876 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.30401991507876 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.30401991507876 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.30401991507876 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.30401991507876 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.30401991507876 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.30401991507876 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.30401991507876 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.30401991507876 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.30401991507876 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.30401991507876 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.30401991507876 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.30401991507876 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.30401991507876 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.30401991507876 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.30401991507876 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.30401991507876 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.30401991507876 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.30401991507876 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.30401991507876 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.30401991507876 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.30401991507876 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.30401991507876 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.30401991507876 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.30401991507876 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.30401991507876 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.30401991507876 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.30401991507876 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.30401991507876 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.30401991507876 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.30401991507876 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.30401991507876 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.30401991507876 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.30401991507876 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.30401991507876 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.30401991507876 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.30401991507876 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.30401991507876 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.30401991507876 -8.95223464751641e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.290200828029725 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.290200828029725 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.290200828029725 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.290200828029725 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.290200828029725 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.290200828029725 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.290200828029725 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.290200828029725 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.290200828029725 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.290200828029725 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.290200828029725 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.290200828029725 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.290200828029725 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.290200828029725 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.290200828029725 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.290200828029725 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.290200828029725 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.290200828029725 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.290200828029725 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.290200828029725 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.290200828029725 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.290200828029725 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.290200828029725 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.290200828029725 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.290200828029725 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.290200828029725 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.290200828029725 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.290200828029725 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.290200828029725 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.290200828029725 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.290200828029725 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.290200828029725 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.290200828029725 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.290200828029725 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.290200828029725 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.290200828029725 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.290200828029725 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.290200828029725 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.290200828029725 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.290200828029725 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.290200828029725 -3.89402546126732e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.283291284505208 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.283291284505208 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.283291284505208 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.283291284505208 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.283291284505208 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.283291284505208 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.283291284505208 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.283291284505208 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.283291284505208 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.283291284505208 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.283291284505208 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.283291284505208 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.283291284505208 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.283291284505208 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.283291284505208 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.283291284505208 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.283291284505208 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.283291284505208 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.283291284505208 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.283291284505208 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.283291284505208 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.283291284505208 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.283291284505208 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.283291284505208 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.283291284505208 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.283291284505208 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.283291284505208 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.283291284505208 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.283291284505208 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.283291284505208 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.283291284505208 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.283291284505208 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.283291284505208 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.283291284505208 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.283291284505208 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.283291284505208 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.283291284505208 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.283291284505208 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.283291284505208 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.283291284505208 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.283291284505208 -1.36492086814278e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.27983651274295 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.27983651274295 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.27983651274295 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.27983651274295 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.27983651274295 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.27983651274295 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.27983651274295 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.27983651274295 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.27983651274295 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.27983651274295 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.27983651274295 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.27983651274295 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.27983651274295 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.27983651274295 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.27983651274295 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.27983651274295 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.27983651274295 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.27983651274295 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.27983651274295 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.27983651274295 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.27983651274295 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.27983651274295 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.27983651274295 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.27983651274295 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.27983651274295 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.27983651274295 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.27983651274295 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.27983651274295 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.27983651274295 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.27983651274295 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.27983651274295 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.27983651274295 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.27983651274295 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.27983651274295 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.27983651274295 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.27983651274295 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.27983651274295 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.27983651274295 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.27983651274295 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.27983651274295 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.27983651274295 -1.00368571580509e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.276381740980691 -8.83593269339074e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -8.83593269339074e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -8.83593269339074e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.276381740980691 -8.83593269339074e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -8.83593269339074e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -8.83593269339074e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -8.83593269339074e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -8.83593269339074e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -8.83593269339074e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -8.83593269339074e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.276381740980691 -8.83593269339074e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.276381740980691 -8.83593269339074e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -8.83593269339074e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -8.83593269339074e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -8.83593269339074e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -8.83593269339074e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -8.83593269339074e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -8.83593269339074e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.276381740980691 -8.83593269339074e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.276381740980691 -8.83593269339074e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.276381740980691 -8.83593269339074e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.276381740980691 -8.83593269339074e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.276381740980691 -8.83593269339074e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.276381740980691 -8.83593269339074e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.276381740980691 -8.83593269339074e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.276381740980691 -8.83593269339074e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.276381740980691 -8.83593269339074e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.276381740980691 -8.83593269339074e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.276381740980691 -8.83593269339074e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.276381740980691 -8.83593269339074e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.276381740980691 -8.83593269339074e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.276381740980691 -8.83593269339074e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.276381740980691 -8.83593269339074e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.276381740980691 -8.83593269339074e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.276381740980691 -8.83593269339074e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.276381740980691 -8.83593269339074e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.276381740980691 -8.83593269339074e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.276381740980691 -8.83593269339074e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.276381740980691 -8.83593269339074e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.276381740980691 -8.83593269339074e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.276381740980691 -8.83593269339074e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.50743746240274 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.50743746240274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.50743746240274 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.50743746240274 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.85818120864302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.85818120864302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.85818120864302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.85818120864302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.85818120864302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.85818120864302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.85818120864302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.85818120864302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.85818120864302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.85818120864302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.85818120864302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.85818120864302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.85818120864302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.85818120864302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.85818120864302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.85818120864302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.85818120864302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.85818120864302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.85818120864302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.85818120864302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.85818120864302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.85818120864302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.85818120864302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.85818120864302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.85818120864302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.85818120864302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.85818120864302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.85818120864302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.85818120864302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.85818120864302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.85818120864302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.85818120864302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.85818120864302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.85818120864302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.85818120864302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.85818120864302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.85818120864302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.85818120864302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.85818120864302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.85818120864302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.85818120864302 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.68280933552288 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.68280933552288 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.68280933552288 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.68280933552288 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.68280933552288 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.68280933552288 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.68280933552288 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.68280933552288 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.68280933552288 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.68280933552288 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.68280933552288 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.68280933552288 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.68280933552288 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.68280933552288 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.68280933552288 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.68280933552288 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.68280933552288 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.68280933552288 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.68280933552288 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.68280933552288 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.68280933552288 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.68280933552288 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.68280933552288 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.68280933552288 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.68280933552288 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.68280933552288 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.68280933552288 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.68280933552288 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.68280933552288 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.68280933552288 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.68280933552288 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.68280933552288 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.68280933552288 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.68280933552288 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.68280933552288 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.68280933552288 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.68280933552288 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.68280933552288 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.68280933552288 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.68280933552288 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.68280933552288 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.59512339896281 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.59512339896281 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.59512339896281 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.59512339896281 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.59512339896281 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.59512339896281 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.59512339896281 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.59512339896281 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.59512339896281 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.59512339896281 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.59512339896281 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.59512339896281 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.59512339896281 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.59512339896281 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.59512339896281 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.59512339896281 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.59512339896281 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.59512339896281 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.59512339896281 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.59512339896281 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.59512339896281 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.59512339896281 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.59512339896281 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.59512339896281 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.59512339896281 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.59512339896281 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.59512339896281 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.59512339896281 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.59512339896281 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.59512339896281 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.59512339896281 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.59512339896281 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.59512339896281 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.59512339896281 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.59512339896281 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.59512339896281 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.59512339896281 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.59512339896281 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.59512339896281 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.59512339896281 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.59512339896281 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.55128043068278 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.55128043068278 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.55128043068278 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.55128043068278 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.55128043068278 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.55128043068278 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.55128043068278 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.55128043068278 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.55128043068278 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.55128043068278 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.55128043068278 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.55128043068278 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.55128043068278 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.55128043068278 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.55128043068278 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.55128043068278 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.55128043068278 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.55128043068278 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.55128043068278 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.55128043068278 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.55128043068278 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.55128043068278 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.55128043068278 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.55128043068278 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.55128043068278 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.55128043068278 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.55128043068278 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.55128043068278 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.55128043068278 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.55128043068278 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.55128043068278 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.55128043068278 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.55128043068278 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.55128043068278 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.55128043068278 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.55128043068278 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.55128043068278 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.55128043068278 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.55128043068278 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.55128043068278 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.55128043068278 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.50743746240274 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.50743746240274 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.50743746240274 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.50743746240274 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.50743746240274 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.50743746240274 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.50743746240274 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.50743746240274 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.50743746240274 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.50743746240274 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.50743746240274 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.50743746240274 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.50743746240274 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.50743746240274 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.50743746240274 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.50743746240274 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.50743746240274 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.50743746240274 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.50743746240274 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.50743746240274 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.50743746240274 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.50743746240274 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.50743746240274 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.50743746240274 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.50743746240274 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.50743746240274 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.50743746240274 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.7041661296573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.7041661296573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.7041661296573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.7041661296573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.33374951669157 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.33374951669157 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.33374951669157 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.33374951669157 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.33374951669157 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.33374951669157 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.33374951669157 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.33374951669157 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.33374951669157 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.33374951669157 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.33374951669157 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.33374951669157 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.33374951669157 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.33374951669157 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.33374951669157 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.33374951669157 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.33374951669157 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.33374951669157 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.33374951669157 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.33374951669157 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.33374951669157 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.33374951669157 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.33374951669157 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.33374951669157 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.33374951669157 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.33374951669157 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.33374951669157 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.33374951669157 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.33374951669157 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.33374951669157 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.33374951669157 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.33374951669157 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.33374951669157 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.33374951669157 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.33374951669157 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.33374951669157 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.33374951669157 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.33374951669157 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.33374951669157 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.33374951669157 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.33374951669157 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.51895782317443 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.51895782317443 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.51895782317443 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.51895782317443 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.51895782317443 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.51895782317443 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.51895782317443 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.51895782317443 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.51895782317443 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.51895782317443 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.51895782317443 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.51895782317443 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.51895782317443 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.51895782317443 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.51895782317443 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.51895782317443 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.51895782317443 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.51895782317443 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.51895782317443 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.51895782317443 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.51895782317443 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.51895782317443 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.51895782317443 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.51895782317443 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.51895782317443 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.51895782317443 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.51895782317443 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.51895782317443 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.51895782317443 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.51895782317443 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.51895782317443 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.51895782317443 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.51895782317443 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.51895782317443 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.51895782317443 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.51895782317443 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.51895782317443 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.51895782317443 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.51895782317443 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.51895782317443 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.51895782317443 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.61156197641587 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.61156197641587 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.61156197641587 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.61156197641587 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.61156197641587 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.61156197641587 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.61156197641587 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.61156197641587 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.61156197641587 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.61156197641587 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.61156197641587 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.61156197641587 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.61156197641587 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.61156197641587 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.61156197641587 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.61156197641587 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.61156197641587 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.61156197641587 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.61156197641587 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.61156197641587 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.61156197641587 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.61156197641587 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.61156197641587 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.61156197641587 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.61156197641587 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.61156197641587 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.61156197641587 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.61156197641587 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.61156197641587 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.61156197641587 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.61156197641587 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.61156197641587 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.61156197641587 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.61156197641587 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.61156197641587 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.61156197641587 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.61156197641587 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.61156197641587 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.61156197641587 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.61156197641587 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.61156197641587 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65786405303658 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65786405303658 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65786405303658 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65786405303658 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65786405303658 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.65786405303658 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.65786405303658 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.65786405303658 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65786405303658 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.65786405303658 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65786405303658 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65786405303658 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.65786405303658 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65786405303658 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65786405303658 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65786405303658 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.65786405303658 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65786405303658 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.65786405303658 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.65786405303658 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.65786405303658 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.65786405303658 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.65786405303658 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.65786405303658 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.65786405303658 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.65786405303658 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.65786405303658 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.65786405303658 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.65786405303658 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.65786405303658 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.65786405303658 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.65786405303658 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.65786405303658 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.65786405303658 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.65786405303658 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.65786405303658 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.65786405303658 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.65786405303658 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.65786405303658 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.65786405303658 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.65786405303658 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.7041661296573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.7041661296573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.7041661296573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.7041661296573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.7041661296573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.7041661296573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.7041661296573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.7041661296573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.7041661296573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.7041661296573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.7041661296573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.7041661296573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.7041661296573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.7041661296573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.7041661296573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.7041661296573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.7041661296573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.7041661296573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.7041661296573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.7041661296573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.7041661296573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.7041661296573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.7041661296573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.7041661296573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.7041661296573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.7041661296573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.7041661296573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.7041661296573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.7041661296573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.7041661296573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.7041661296573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.7041661296573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.7041661296573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.203726971291573 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.203726971291573 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.203726971291573 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.203726971291573 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.183354274162416 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.183354274162416 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.183354274162416 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.183354274162416 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.183354274162416 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.183354274162416 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.183354274162416 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.183354274162416 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.183354274162416 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.183354274162416 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.183354274162416 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.183354274162416 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.183354274162416 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.183354274162416 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.183354274162416 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.183354274162416 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.183354274162416 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.183354274162416 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.183354274162416 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.183354274162416 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.183354274162416 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.183354274162416 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.183354274162416 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.183354274162416 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.183354274162416 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.183354274162416 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.183354274162416 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.183354274162416 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.183354274162416 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.183354274162416 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.183354274162416 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.183354274162416 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.183354274162416 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.183354274162416 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.183354274162416 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.183354274162416 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.183354274162416 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.183354274162416 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.183354274162416 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.183354274162416 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.183354274162416 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.193540622726994 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.193540622726994 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.193540622726994 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.193540622726994 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.193540622726994 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.193540622726994 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.193540622726994 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.193540622726994 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.193540622726994 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.193540622726994 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.193540622726994 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.193540622726994 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.193540622726994 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.193540622726994 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.193540622726994 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.193540622726994 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.193540622726994 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.193540622726994 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.193540622726994 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.193540622726994 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.193540622726994 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.193540622726994 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.193540622726994 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.193540622726994 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.193540622726994 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.193540622726994 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.193540622726994 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.193540622726994 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.193540622726994 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.193540622726994 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.193540622726994 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.193540622726994 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.193540622726994 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.193540622726994 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.193540622726994 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.193540622726994 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.193540622726994 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.193540622726994 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.193540622726994 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.193540622726994 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.193540622726994 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.198633797009284 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.198633797009284 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.198633797009284 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.198633797009284 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.198633797009284 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.198633797009284 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.198633797009284 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.198633797009284 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.198633797009284 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.198633797009284 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.198633797009284 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.198633797009284 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.198633797009284 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.198633797009284 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.198633797009284 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.198633797009284 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.198633797009284 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.198633797009284 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.198633797009284 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.198633797009284 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.198633797009284 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.198633797009284 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.198633797009284 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.198633797009284 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.198633797009284 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.198633797009284 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.198633797009284 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.198633797009284 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.198633797009284 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.198633797009284 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.198633797009284 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.198633797009284 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.198633797009284 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.198633797009284 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.198633797009284 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.198633797009284 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.198633797009284 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.198633797009284 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.198633797009284 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.198633797009284 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.198633797009284 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.201180384150428 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.201180384150428 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.201180384150428 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.201180384150428 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.201180384150428 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.201180384150428 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.201180384150428 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.201180384150428 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.201180384150428 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.201180384150428 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.201180384150428 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.201180384150428 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.201180384150428 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.201180384150428 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.201180384150428 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.201180384150428 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.201180384150428 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.201180384150428 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.201180384150428 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.201180384150428 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.201180384150428 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.201180384150428 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.201180384150428 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.201180384150428 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.201180384150428 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.201180384150428 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.201180384150428 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.201180384150428 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.201180384150428 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.201180384150428 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.201180384150428 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.201180384150428 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.201180384150428 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.201180384150428 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.201180384150428 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.201180384150428 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.201180384150428 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.201180384150428 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.201180384150428 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.201180384150428 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.201180384150428 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.203726971291573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.203726971291573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.203726971291573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.203726971291573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.203726971291573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.203726971291573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.203726971291573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.203726971291573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.203726971291573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.203726971291573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.203726971291573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.203726971291573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.203726971291573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.203726971291573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.203726971291573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.203726971291573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.203726971291573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.203726971291573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.203726971291573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.203726971291573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.203726971291573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.203726971291573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.203726971291573 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.0604759599184401 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.0604759599184401 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.0604759599184401 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.0604759599184401 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0544283639265961 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0544283639265961 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0544283639265961 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0544283639265961 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0544283639265961 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0544283639265961 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0544283639265961 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0544283639265961 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0544283639265961 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0544283639265961 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0544283639265961 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0544283639265961 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0544283639265961 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0544283639265961 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0544283639265961 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0544283639265961 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0544283639265961 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0544283639265961 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.0544283639265961 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.0544283639265961 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.0544283639265961 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.0544283639265961 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.0544283639265961 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.0544283639265961 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.0544283639265961 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.0544283639265961 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.0544283639265961 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.0544283639265961 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.0544283639265961 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0544283639265961 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.0544283639265961 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.0544283639265961 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.0544283639265961 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.0544283639265961 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.0544283639265961 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.0544283639265961 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.0544283639265961 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.0544283639265961 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.0544283639265961 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.0544283639265961 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.0544283639265961 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0574521619225181 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0574521619225181 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0574521619225181 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0574521619225181 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0574521619225181 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0574521619225181 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0574521619225181 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0574521619225181 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0574521619225181 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0574521619225181 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0574521619225181 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0574521619225181 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0574521619225181 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0574521619225181 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0574521619225181 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0574521619225181 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0574521619225181 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0574521619225181 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.0574521619225181 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.0574521619225181 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.0574521619225181 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.0574521619225181 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.0574521619225181 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.0574521619225181 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.0574521619225181 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.0574521619225181 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.0574521619225181 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.0574521619225181 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.0574521619225181 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0574521619225181 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.0574521619225181 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.0574521619225181 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.0574521619225181 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.0574521619225181 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.0574521619225181 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.0574521619225181 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.0574521619225181 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.0574521619225181 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.0574521619225181 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.0574521619225181 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.0574521619225181 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0589640609204791 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0589640609204791 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0589640609204791 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0589640609204791 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0589640609204791 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0589640609204791 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0589640609204791 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0589640609204791 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0589640609204791 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0589640609204791 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0589640609204791 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0589640609204791 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0589640609204791 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0589640609204791 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0589640609204791 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0589640609204791 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0589640609204791 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0589640609204791 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.0589640609204791 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.0589640609204791 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.0589640609204791 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.0589640609204791 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.0589640609204791 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.0589640609204791 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.0589640609204791 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.0589640609204791 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.0589640609204791 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.0589640609204791 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.0589640609204791 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0589640609204791 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.0589640609204791 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.0589640609204791 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.0589640609204791 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.0589640609204791 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.0589640609204791 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.0589640609204791 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.0589640609204791 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.0589640609204791 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.0589640609204791 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.0589640609204791 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.0589640609204791 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0597200104194596 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0597200104194596 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0597200104194596 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0597200104194596 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0597200104194596 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0597200104194596 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0597200104194596 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0597200104194596 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0597200104194596 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0597200104194596 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0597200104194596 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0597200104194596 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0597200104194596 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0597200104194596 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0597200104194596 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0597200104194596 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0597200104194596 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0597200104194596 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.0597200104194596 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.0597200104194596 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.0597200104194596 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.0597200104194596 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.0597200104194596 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.0597200104194596 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.0597200104194596 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.0597200104194596 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.0597200104194596 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.0597200104194596 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.0597200104194596 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0597200104194596 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.0597200104194596 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.0597200104194596 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.0597200104194596 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.0597200104194596 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.0597200104194596 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.0597200104194596 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.0597200104194596 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.0597200104194596 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.0597200104194596 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.0597200104194596 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.0597200104194596 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.0604759599184401 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.0604759599184401 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.0604759599184401 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.0604759599184401 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.0604759599184401 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.0604759599184401 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.0604759599184401 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.0604759599184401 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.0604759599184401 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.0604759599184401 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.0604759599184401 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0604759599184401 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.0604759599184401 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.0604759599184401 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.0604759599184401 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.0604759599184401 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.0604759599184401 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.0604759599184401 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.0604759599184401 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.0604759599184401 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.0604759599184401 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.0604759599184401 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.0604759599184401 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -1.42611116868098 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -1.42611116868098 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -1.42611116868098 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -1.42611116868098 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -1.56872228554908 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -1.49741672711503 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -1.46176394789801 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -1.4439375582895 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -1.42611116868098 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.89318177064316 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.89318177064316 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.89318177064316 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.89318177064316 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.50386359357885 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.50386359357885 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.50386359357885 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.50386359357885 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.50386359357885 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.50386359357885 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.50386359357885 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.50386359357885 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.50386359357885 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.50386359357885 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.50386359357885 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.50386359357885 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.50386359357885 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.50386359357885 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.50386359357885 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.50386359357885 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.50386359357885 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.50386359357885 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.50386359357885 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.50386359357885 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.50386359357885 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.50386359357885 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.50386359357885 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.50386359357885 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.50386359357885 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.50386359357885 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.50386359357885 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.50386359357885 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.50386359357885 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.50386359357885 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.50386359357885 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.50386359357885 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.50386359357885 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.50386359357885 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.50386359357885 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.50386359357885 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.50386359357885 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.50386359357885 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.50386359357885 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.50386359357885 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.50386359357885 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.69852268211101 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.69852268211101 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.69852268211101 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.69852268211101 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.69852268211101 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.69852268211101 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.69852268211101 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.69852268211101 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.69852268211101 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.69852268211101 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.69852268211101 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.69852268211101 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.69852268211101 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.69852268211101 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.69852268211101 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.69852268211101 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.69852268211101 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.69852268211101 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.69852268211101 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.69852268211101 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.69852268211101 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.69852268211101 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.69852268211101 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.69852268211101 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.69852268211101 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.69852268211101 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.69852268211101 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.69852268211101 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.69852268211101 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.69852268211101 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.69852268211101 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.69852268211101 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.69852268211101 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.69852268211101 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.69852268211101 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.69852268211101 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.69852268211101 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.69852268211101 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.69852268211101 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.69852268211101 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.69852268211101 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.79585222637709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.79585222637709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.79585222637709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.79585222637709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.79585222637709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.79585222637709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.79585222637709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.79585222637709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.79585222637709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.79585222637709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.79585222637709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.79585222637709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.79585222637709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.79585222637709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.79585222637709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.79585222637709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.79585222637709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.79585222637709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.79585222637709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.79585222637709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.79585222637709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.79585222637709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.79585222637709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.79585222637709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.79585222637709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.79585222637709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.79585222637709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.79585222637709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.79585222637709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.79585222637709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.79585222637709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.79585222637709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.79585222637709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.79585222637709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.79585222637709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.79585222637709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.79585222637709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.79585222637709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.79585222637709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.79585222637709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.79585222637709 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.84451699851012 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.84451699851012 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.84451699851012 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.84451699851012 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.84451699851012 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.84451699851012 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.84451699851012 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.84451699851012 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.84451699851012 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.84451699851012 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.84451699851012 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.84451699851012 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.84451699851012 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.84451699851012 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.84451699851012 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.84451699851012 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.84451699851012 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.84451699851012 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.84451699851012 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.84451699851012 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.84451699851012 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.84451699851012 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.84451699851012 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.84451699851012 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.84451699851012 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.84451699851012 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.84451699851012 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.84451699851012 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.84451699851012 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.84451699851012 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.84451699851012 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.84451699851012 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.84451699851012 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.84451699851012 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.84451699851012 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.84451699851012 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.84451699851012 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.84451699851012 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.84451699851012 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.84451699851012 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.84451699851012 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.89318177064316 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.89318177064316 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.89318177064316 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.89318177064316 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.89318177064316 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.89318177064316 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.89318177064316 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.89318177064316 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.89318177064316 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.89318177064316 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.89318177064316 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.89318177064316 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.89318177064316 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.89318177064316 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.89318177064316 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.89318177064316 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.89318177064316 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.89318177064316 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.89318177064316 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.89318177064316 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.89318177064316 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.89318177064316 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.89318177064316 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.89318177064316 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.89318177064316 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.89318177064316 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.89318177064316 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.89318177064316 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.89318177064316 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.89318177064316 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.89318177064316 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.16694488212186 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.16694488212186 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.16694488212186 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.16694488212186 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.183639370334046 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.183639370334046 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.183639370334046 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.183639370334046 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.183639370334046 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.183639370334046 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.183639370334046 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.183639370334046 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.183639370334046 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.183639370334046 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.183639370334046 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.183639370334046 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.183639370334046 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.183639370334046 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.183639370334046 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.183639370334046 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.183639370334046 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.183639370334046 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.183639370334046 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.183639370334046 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.183639370334046 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.183639370334046 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.183639370334046 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.183639370334046 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.183639370334046 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.183639370334046 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.183639370334046 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.183639370334046 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.183639370334046 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.183639370334046 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.183639370334046 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.183639370334046 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.183639370334046 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.183639370334046 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.183639370334046 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.183639370334046 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.183639370334046 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.183639370334046 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.183639370334046 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.183639370334046 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.175292126227953 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.175292126227953 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.175292126227953 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.175292126227953 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.175292126227953 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.175292126227953 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.175292126227953 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.175292126227953 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.175292126227953 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.175292126227953 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.175292126227953 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.175292126227953 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.175292126227953 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.175292126227953 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.175292126227953 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.175292126227953 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.175292126227953 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.175292126227953 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.175292126227953 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.175292126227953 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.175292126227953 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.175292126227953 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.175292126227953 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.175292126227953 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.175292126227953 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.175292126227953 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.175292126227953 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.175292126227953 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.175292126227953 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.175292126227953 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.175292126227953 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.175292126227953 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.175292126227953 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.175292126227953 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.175292126227953 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.175292126227953 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.175292126227953 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.175292126227953 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.175292126227953 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.175292126227953 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.171118504174907 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.171118504174907 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.171118504174907 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.171118504174907 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.171118504174907 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.171118504174907 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.171118504174907 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.171118504174907 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.171118504174907 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.171118504174907 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.171118504174907 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.171118504174907 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.171118504174907 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.171118504174907 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.171118504174907 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.171118504174907 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.171118504174907 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.171118504174907 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.171118504174907 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.171118504174907 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.171118504174907 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.171118504174907 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.171118504174907 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.171118504174907 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.171118504174907 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.171118504174907 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.171118504174907 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.171118504174907 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.171118504174907 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.171118504174907 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.171118504174907 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.171118504174907 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.171118504174907 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.171118504174907 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.171118504174907 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.171118504174907 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.171118504174907 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.171118504174907 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.171118504174907 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.171118504174907 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.169031693148384 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.169031693148384 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.169031693148384 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.169031693148384 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.169031693148384 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.169031693148384 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.169031693148384 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.169031693148384 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.169031693148384 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.169031693148384 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.169031693148384 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.169031693148384 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.169031693148384 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.169031693148384 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.169031693148384 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.169031693148384 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.169031693148384 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.169031693148384 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.169031693148384 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.169031693148384 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.169031693148384 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.169031693148384 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.169031693148384 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.169031693148384 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.169031693148384 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.169031693148384 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.169031693148384 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.169031693148384 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.169031693148384 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.169031693148384 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.169031693148384 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.169031693148384 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.169031693148384 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.169031693148384 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.169031693148384 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.169031693148384 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.169031693148384 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.169031693148384 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.169031693148384 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.169031693148384 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.16694488212186 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.16694488212186 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.16694488212186 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.16694488212186 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.16694488212186 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.16694488212186 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.16694488212186 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.16694488212186 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.16694488212186 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.16694488212186 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.16694488212186 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.16694488212186 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.16694488212186 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.16694488212186 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.16694488212186 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.16694488212186 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.16694488212186 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.16694488212186 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.16694488212186 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.16694488212186 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.16694488212186 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.16694488212186 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.16694488212186 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.16694488212186 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.16694488212186 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.16694488212186 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.16694488212186 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.00424953238949 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.00424953238949 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.00424953238949 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.00424953238949 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.20467448562844 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.10446200900896 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.05435577069922 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.02930265154436 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.00424953238949 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 1.29726570207939 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 1.29726570207939 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 1.29726570207939 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 1.29726570207939 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.16753913187145 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.16753913187145 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.16753913187145 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.16753913187145 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 1.16753913187145 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.16753913187145 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.16753913187145 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.16753913187145 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.16753913187145 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.16753913187145 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.16753913187145 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.16753913187145 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.16753913187145 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.16753913187145 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.16753913187145 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.16753913187145 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.16753913187145 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.16753913187145 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 1.16753913187145 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 1.16753913187145 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 1.16753913187145 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 1.16753913187145 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 1.16753913187145 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 1.16753913187145 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.16753913187145 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.16753913187145 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 1.16753913187145 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.16753913187145 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.16753913187145 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.16753913187145 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.16753913187145 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.16753913187145 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 1.16753913187145 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 1.16753913187145 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 1.16753913187145 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 1.16753913187145 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 1.16753913187145 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 1.16753913187145 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 1.16753913187145 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 1.16753913187145 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.23240241697542 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.23240241697542 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.23240241697542 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.23240241697542 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 1.23240241697542 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.23240241697542 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.23240241697542 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.23240241697542 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.23240241697542 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.23240241697542 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.23240241697542 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.23240241697542 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.23240241697542 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.23240241697542 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.23240241697542 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.23240241697542 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.23240241697542 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.23240241697542 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 1.23240241697542 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 1.23240241697542 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 1.23240241697542 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 1.23240241697542 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 1.23240241697542 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 1.23240241697542 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.23240241697542 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.23240241697542 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 1.23240241697542 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.23240241697542 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.23240241697542 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.23240241697542 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.23240241697542 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.23240241697542 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 1.23240241697542 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 1.23240241697542 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 1.23240241697542 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 1.23240241697542 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 1.23240241697542 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 1.23240241697542 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 1.23240241697542 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 1.23240241697542 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.26483405952741 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.26483405952741 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.26483405952741 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.26483405952741 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 1.26483405952741 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.26483405952741 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.26483405952741 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.26483405952741 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.26483405952741 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.26483405952741 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.26483405952741 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.26483405952741 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.26483405952741 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.26483405952741 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.26483405952741 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.26483405952741 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.26483405952741 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.26483405952741 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 1.26483405952741 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 1.26483405952741 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 1.26483405952741 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 1.26483405952741 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 1.26483405952741 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 1.26483405952741 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.26483405952741 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.26483405952741 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 1.26483405952741 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.26483405952741 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.26483405952741 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.26483405952741 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.26483405952741 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.26483405952741 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 1.26483405952741 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 1.26483405952741 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 1.26483405952741 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 1.26483405952741 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 1.26483405952741 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 1.26483405952741 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 1.26483405952741 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 1.26483405952741 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.2810498808034 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.2810498808034 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.2810498808034 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.2810498808034 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 1.2810498808034 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.2810498808034 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.2810498808034 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.2810498808034 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.2810498808034 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.2810498808034 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.2810498808034 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.2810498808034 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.2810498808034 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.2810498808034 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.2810498808034 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.2810498808034 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.2810498808034 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.2810498808034 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 1.2810498808034 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 1.2810498808034 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 1.2810498808034 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 1.2810498808034 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 1.2810498808034 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 1.2810498808034 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.2810498808034 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.2810498808034 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 1.2810498808034 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.2810498808034 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.2810498808034 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.2810498808034 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.2810498808034 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.2810498808034 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 1.2810498808034 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 1.2810498808034 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 1.2810498808034 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 1.2810498808034 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 1.2810498808034 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 1.2810498808034 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 1.2810498808034 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 1.2810498808034 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.29726570207939 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 1.29726570207939 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.29726570207939 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.29726570207939 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.29726570207939 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.29726570207939 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.29726570207939 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.29726570207939 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 1.29726570207939 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 1.29726570207939 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 1.29726570207939 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 1.29726570207939 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 1.29726570207939 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 1.29726570207939 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 1.29726570207939 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 1.29726570207939 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 1.29726570207939 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 1.29726570207939 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 1.29726570207939 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 1.29726570207939 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 1.29726570207939 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 1.29726570207939 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 1.29726570207939 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 1.29726570207939 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 1.29726570207939 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 1.29726570207939 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 1.29726570207939 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 1.29726570207939 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 1.29726570207939 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 1.29726570207939 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.106074003959539 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.106074003959539 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.106074003959539 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.106074003959539 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0954666035635854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.0954666035635854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0954666035635854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0954666035635854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.0954666035635854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0954666035635854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0954666035635854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0954666035635854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0954666035635854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.0954666035635854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.0954666035635854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.0954666035635854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.0954666035635854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.0954666035635854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0954666035635854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.0954666035635854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0954666035635854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.0954666035635854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.0954666035635854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.0954666035635854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.0954666035635854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.0954666035635854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.0954666035635854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.0954666035635854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.0954666035635854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.0954666035635854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.0954666035635854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.0954666035635854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.0954666035635854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0954666035635854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.0954666035635854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.0954666035635854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.0954666035635854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.0954666035635854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.0954666035635854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.0954666035635854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.0954666035635854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.0954666035635854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.0954666035635854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.0954666035635854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.0954666035635854 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.100770303761562 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.100770303761562 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.100770303761562 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.100770303761562 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.100770303761562 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.100770303761562 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.100770303761562 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.100770303761562 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.100770303761562 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.100770303761562 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.100770303761562 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.100770303761562 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.100770303761562 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.100770303761562 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.100770303761562 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.100770303761562 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.100770303761562 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.100770303761562 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.100770303761562 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.100770303761562 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.100770303761562 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.100770303761562 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.100770303761562 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.100770303761562 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.100770303761562 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.100770303761562 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.100770303761562 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.100770303761562 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.100770303761562 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.100770303761562 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.100770303761562 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.100770303761562 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.100770303761562 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.100770303761562 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.100770303761562 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.100770303761562 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.100770303761562 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.100770303761562 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.100770303761562 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.100770303761562 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.100770303761562 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.103422153860551 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.103422153860551 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.103422153860551 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.103422153860551 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.103422153860551 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.103422153860551 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.103422153860551 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.103422153860551 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.103422153860551 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.103422153860551 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.103422153860551 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.103422153860551 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.103422153860551 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.103422153860551 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.103422153860551 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.103422153860551 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.103422153860551 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.103422153860551 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.103422153860551 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.103422153860551 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.103422153860551 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.103422153860551 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.103422153860551 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.103422153860551 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.103422153860551 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.103422153860551 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.103422153860551 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.103422153860551 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.103422153860551 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.103422153860551 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.103422153860551 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.103422153860551 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.103422153860551 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.103422153860551 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.103422153860551 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.103422153860551 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.103422153860551 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.103422153860551 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.103422153860551 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.103422153860551 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.103422153860551 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.104748078910045 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.104748078910045 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.104748078910045 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.104748078910045 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.104748078910045 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.104748078910045 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.104748078910045 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.104748078910045 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.104748078910045 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.104748078910045 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.104748078910045 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.104748078910045 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.104748078910045 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.104748078910045 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.104748078910045 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.104748078910045 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.104748078910045 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.104748078910045 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.104748078910045 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.104748078910045 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.104748078910045 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.104748078910045 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.104748078910045 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.104748078910045 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.104748078910045 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.104748078910045 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.104748078910045 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.104748078910045 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.104748078910045 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.104748078910045 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.104748078910045 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.104748078910045 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.104748078910045 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.104748078910045 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.104748078910045 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.104748078910045 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.104748078910045 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.104748078910045 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.104748078910045 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.104748078910045 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.104748078910045 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.106074003959539 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.106074003959539 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.106074003959539 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.106074003959539 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.106074003959539 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.106074003959539 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.106074003959539 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.106074003959539 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.106074003959539 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.106074003959539 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.106074003959539 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.106074003959539 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.106074003959539 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.106074003959539 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.106074003959539 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.106074003959539 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.106074003959539 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.106074003959539 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.106074003959539 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.106074003959539 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.106074003959539 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.106074003959539 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.106074003959539 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.106074003959539 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.106074003959539 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.106074003959539 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.106074003959539 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.106074003959539 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.106074003959539 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.106074003959539 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.106074003959539 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.106074003959539 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.20115698898183 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.20115698898183 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.20115698898183 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.20115698898183 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.88104129008365 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.88104129008365 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.88104129008365 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.88104129008365 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.88104129008365 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.88104129008365 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.88104129008365 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.88104129008365 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.88104129008365 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.88104129008365 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.88104129008365 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 2.88104129008365 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.88104129008365 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 2.88104129008365 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.88104129008365 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.88104129008365 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.88104129008365 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.88104129008365 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 2.88104129008365 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 2.88104129008365 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 2.88104129008365 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 2.88104129008365 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 2.88104129008365 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 2.88104129008365 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 2.88104129008365 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 2.88104129008365 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 2.88104129008365 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 2.88104129008365 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.88104129008365 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.88104129008365 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.88104129008365 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 2.88104129008365 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 2.88104129008365 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.88104129008365 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.88104129008365 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 2.88104129008365 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 2.88104129008365 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 2.88104129008365 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 2.88104129008365 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 2.88104129008365 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 2.88104129008365 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.04109913953274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.04109913953274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.04109913953274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.04109913953274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.04109913953274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.04109913953274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.04109913953274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.04109913953274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.04109913953274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.04109913953274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.04109913953274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.04109913953274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.04109913953274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.04109913953274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.04109913953274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.04109913953274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.04109913953274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.04109913953274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.04109913953274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.04109913953274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.04109913953274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.04109913953274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.04109913953274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.04109913953274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.04109913953274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.04109913953274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.04109913953274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.04109913953274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.04109913953274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.04109913953274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.04109913953274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.04109913953274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.04109913953274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.04109913953274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.04109913953274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.04109913953274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.04109913953274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.04109913953274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.04109913953274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.04109913953274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.04109913953274 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.12112806425729 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.12112806425729 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.12112806425729 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.12112806425729 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.12112806425729 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.12112806425729 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.12112806425729 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.12112806425729 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.12112806425729 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.12112806425729 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.12112806425729 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.12112806425729 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.12112806425729 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.12112806425729 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.12112806425729 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.12112806425729 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.12112806425729 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.12112806425729 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.12112806425729 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.12112806425729 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.12112806425729 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.12112806425729 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.12112806425729 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.12112806425729 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.12112806425729 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.12112806425729 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.12112806425729 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.12112806425729 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.12112806425729 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.12112806425729 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.12112806425729 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.12112806425729 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.12112806425729 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.12112806425729 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.12112806425729 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.12112806425729 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.12112806425729 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.12112806425729 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.12112806425729 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.12112806425729 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.12112806425729 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.16114252661956 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.16114252661956 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.16114252661956 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.16114252661956 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.16114252661956 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.16114252661956 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.16114252661956 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.16114252661956 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.16114252661956 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.16114252661956 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.16114252661956 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.16114252661956 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.16114252661956 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.16114252661956 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.16114252661956 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.16114252661956 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.16114252661956 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.16114252661956 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.16114252661956 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.16114252661956 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.16114252661956 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.16114252661956 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.16114252661956 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.16114252661956 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.16114252661956 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.16114252661956 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.16114252661956 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.16114252661956 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.16114252661956 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.16114252661956 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.16114252661956 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.16114252661956 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.16114252661956 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.16114252661956 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.16114252661956 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.16114252661956 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.16114252661956 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.16114252661956 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.16114252661956 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.16114252661956 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.16114252661956 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.20115698898183 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.20115698898183 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.20115698898183 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.20115698898183 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.20115698898183 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.20115698898183 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.20115698898183 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.20115698898183 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.20115698898183 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.20115698898183 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.20115698898183 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.20115698898183 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.20115698898183 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.20115698898183 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.20115698898183 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.20115698898183 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.20115698898183 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.20115698898183 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.20115698898183 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.20115698898183 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.20115698898183 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.20115698898183 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.20115698898183 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.20115698898183 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.20115698898183 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.20115698898183 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.20115698898183 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.20115698898183 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.20115698898183 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.20115698898183 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.20115698898183 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.20115698898183 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.39441772687617 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.39441772687617 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.39441772687617 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.39441772687617 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.73385949956379 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.73385949956379 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.73385949956379 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.73385949956379 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.73385949956379 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.73385949956379 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.73385949956379 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.73385949956379 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.73385949956379 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.73385949956379 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.73385949956379 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.73385949956379 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.73385949956379 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.73385949956379 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.73385949956379 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.73385949956379 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.73385949956379 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.73385949956379 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.73385949956379 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.73385949956379 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.73385949956379 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.73385949956379 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.73385949956379 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.73385949956379 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.73385949956379 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.73385949956379 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.73385949956379 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.73385949956379 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.73385949956379 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.73385949956379 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.73385949956379 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.73385949956379 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.73385949956379 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.73385949956379 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.73385949956379 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.73385949956379 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.73385949956379 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.73385949956379 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.73385949956379 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.73385949956379 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.73385949956379 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.56413861321998 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.56413861321998 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.56413861321998 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.56413861321998 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.56413861321998 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.56413861321998 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.56413861321998 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.56413861321998 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.56413861321998 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.56413861321998 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.56413861321998 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.56413861321998 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.56413861321998 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.56413861321998 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.56413861321998 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.56413861321998 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.56413861321998 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.56413861321998 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.56413861321998 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.56413861321998 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.56413861321998 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.56413861321998 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.56413861321998 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.56413861321998 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.56413861321998 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.56413861321998 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.56413861321998 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.56413861321998 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.56413861321998 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.56413861321998 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.56413861321998 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.56413861321998 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.56413861321998 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.56413861321998 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.56413861321998 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.56413861321998 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.56413861321998 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.56413861321998 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.56413861321998 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.56413861321998 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.56413861321998 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.47927817004807 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.47927817004807 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.47927817004807 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.47927817004807 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.47927817004807 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.47927817004807 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.47927817004807 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.47927817004807 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.47927817004807 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.47927817004807 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.47927817004807 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.47927817004807 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.47927817004807 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.47927817004807 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.47927817004807 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.47927817004807 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.47927817004807 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.47927817004807 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.47927817004807 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.47927817004807 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.47927817004807 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.47927817004807 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.47927817004807 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.47927817004807 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.47927817004807 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.47927817004807 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.47927817004807 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.47927817004807 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.47927817004807 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.47927817004807 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.47927817004807 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.47927817004807 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.47927817004807 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.47927817004807 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.47927817004807 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.47927817004807 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.47927817004807 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.47927817004807 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.47927817004807 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.47927817004807 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.47927817004807 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.43684794846212 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.43684794846212 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.43684794846212 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.43684794846212 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.43684794846212 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.43684794846212 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.43684794846212 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.43684794846212 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.43684794846212 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.43684794846212 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.43684794846212 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.43684794846212 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.43684794846212 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.43684794846212 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.43684794846212 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.43684794846212 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.43684794846212 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.43684794846212 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.43684794846212 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.43684794846212 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.43684794846212 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.43684794846212 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.43684794846212 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.43684794846212 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.43684794846212 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.43684794846212 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.43684794846212 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.43684794846212 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.43684794846212 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.43684794846212 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.43684794846212 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.43684794846212 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.43684794846212 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.43684794846212 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.43684794846212 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.43684794846212 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.43684794846212 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.43684794846212 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.43684794846212 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.43684794846212 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.43684794846212 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.39441772687617 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.39441772687617 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.39441772687617 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.39441772687617 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.39441772687617 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.39441772687617 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.39441772687617 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.39441772687617 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.39441772687617 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.39441772687617 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.39441772687617 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.39441772687617 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.39441772687617 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.39441772687617 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.39441772687617 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.39441772687617 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.39441772687617 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.39441772687617 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.39441772687617 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.39441772687617 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.39441772687617 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.39441772687617 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.39441772687617 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.39441772687617 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.39441772687617 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.39441772687617 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.39441772687617 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.39441772687617 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.485228855271993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.485228855271993 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.485228855271993 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.485228855271993 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.436705969744794 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.436705969744794 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.436705969744794 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.436705969744794 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.436705969744794 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.436705969744794 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.436705969744794 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.436705969744794 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.436705969744794 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.436705969744794 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.436705969744794 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.436705969744794 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.436705969744794 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.436705969744794 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.436705969744794 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.436705969744794 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.436705969744794 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.436705969744794 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.436705969744794 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.436705969744794 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.436705969744794 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.436705969744794 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.436705969744794 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.436705969744794 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.436705969744794 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.436705969744794 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.436705969744794 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.436705969744794 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.436705969744794 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.436705969744794 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.436705969744794 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.436705969744794 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.436705969744794 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.436705969744794 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.436705969744794 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.436705969744794 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.436705969744794 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.436705969744794 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.436705969744794 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.436705969744794 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.436705969744794 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.460967412508394 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.460967412508394 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.460967412508394 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.460967412508394 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.460967412508394 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.460967412508394 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.460967412508394 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.460967412508394 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.460967412508394 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.460967412508394 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.460967412508394 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.460967412508394 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.460967412508394 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.460967412508394 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.460967412508394 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.460967412508394 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.460967412508394 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.460967412508394 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.460967412508394 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.460967412508394 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.460967412508394 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.460967412508394 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.460967412508394 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.460967412508394 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.460967412508394 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.460967412508394 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.460967412508394 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.460967412508394 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.460967412508394 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.460967412508394 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.460967412508394 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.460967412508394 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.460967412508394 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.460967412508394 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.460967412508394 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.460967412508394 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.460967412508394 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.460967412508394 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.460967412508394 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.460967412508394 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.460967412508394 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.473098133890193 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.473098133890193 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.473098133890193 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.473098133890193 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.473098133890193 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.473098133890193 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.473098133890193 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.473098133890193 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.473098133890193 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.473098133890193 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.473098133890193 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.473098133890193 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.473098133890193 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.473098133890193 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.473098133890193 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.473098133890193 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.473098133890193 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.473098133890193 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.473098133890193 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.473098133890193 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.473098133890193 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.473098133890193 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.473098133890193 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.473098133890193 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.473098133890193 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.473098133890193 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.473098133890193 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.473098133890193 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.473098133890193 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.473098133890193 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.473098133890193 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.473098133890193 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.473098133890193 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.473098133890193 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.473098133890193 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.473098133890193 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.473098133890193 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.473098133890193 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.473098133890193 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.473098133890193 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.473098133890193 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.479163494581093 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.479163494581093 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.479163494581093 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.479163494581093 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.479163494581093 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.479163494581093 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.479163494581093 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.479163494581093 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.479163494581093 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.479163494581093 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.479163494581093 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.479163494581093 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.479163494581093 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.479163494581093 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.479163494581093 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.479163494581093 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.479163494581093 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.479163494581093 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.479163494581093 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.479163494581093 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.479163494581093 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.479163494581093 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.479163494581093 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.479163494581093 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.479163494581093 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.479163494581093 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.479163494581093 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.479163494581093 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.479163494581093 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.479163494581093 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.479163494581093 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.479163494581093 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.479163494581093 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.479163494581093 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.479163494581093 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.479163494581093 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.479163494581093 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.479163494581093 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.479163494581093 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.479163494581093 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.479163494581093 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.485228855271993 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.485228855271993 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.485228855271993 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.485228855271993 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.485228855271993 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.485228855271993 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.485228855271993 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.485228855271993 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.485228855271993 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.485228855271993 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.485228855271993 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.485228855271993 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.485228855271993 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.485228855271993 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.485228855271993 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.485228855271993 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.485228855271993 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.485228855271993 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.485228855271993 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.485228855271993 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.485228855271993 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.485228855271993 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.485228855271993 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.485228855271993 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.485228855271993 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.485228855271993 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.01973049704329 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.01973049704329 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.01973049704329 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.01973049704329 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.32170354674762 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.17071702189545 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.09522375946937 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.05747712825633 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.01973049704329 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.229353993841366 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.229353993841366 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.229353993841366 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.229353993841366 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.252289393225503 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.240821693533434 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.2350878436874 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.232220918764383 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.229353993841366 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.31761214686117 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.31761214686117 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.31761214686117 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.31761214686117 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.64937336154729 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.64937336154729 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.64937336154729 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.64937336154729 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.64937336154729 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.64937336154729 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.64937336154729 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.64937336154729 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.64937336154729 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.64937336154729 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.64937336154729 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.64937336154729 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.64937336154729 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.64937336154729 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.64937336154729 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.64937336154729 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.64937336154729 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.64937336154729 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.64937336154729 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.64937336154729 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.64937336154729 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.64937336154729 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.64937336154729 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.64937336154729 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.64937336154729 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.64937336154729 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.64937336154729 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.64937336154729 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.64937336154729 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.64937336154729 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.64937336154729 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.64937336154729 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.64937336154729 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.64937336154729 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.64937336154729 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.64937336154729 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.64937336154729 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.64937336154729 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.64937336154729 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.64937336154729 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.64937336154729 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.48349275420423 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.48349275420423 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.48349275420423 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.48349275420423 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.48349275420423 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.48349275420423 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.48349275420423 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.48349275420423 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.48349275420423 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.48349275420423 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.48349275420423 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.48349275420423 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.48349275420423 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.48349275420423 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.48349275420423 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.48349275420423 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.48349275420423 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.48349275420423 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.48349275420423 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.48349275420423 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.48349275420423 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.48349275420423 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.48349275420423 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.48349275420423 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.48349275420423 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.48349275420423 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.48349275420423 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.48349275420423 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.48349275420423 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.48349275420423 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.48349275420423 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.48349275420423 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.48349275420423 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.48349275420423 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.48349275420423 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.48349275420423 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.48349275420423 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.48349275420423 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.48349275420423 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.48349275420423 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.48349275420423 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.4005524505327 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.4005524505327 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.4005524505327 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.4005524505327 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.4005524505327 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.4005524505327 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.4005524505327 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.4005524505327 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.4005524505327 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.4005524505327 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.4005524505327 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.4005524505327 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.4005524505327 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.4005524505327 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.4005524505327 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.4005524505327 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.4005524505327 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.4005524505327 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.4005524505327 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.4005524505327 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.4005524505327 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.4005524505327 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.4005524505327 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.4005524505327 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.4005524505327 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.4005524505327 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.4005524505327 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.4005524505327 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.4005524505327 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.4005524505327 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.4005524505327 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.4005524505327 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.4005524505327 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.4005524505327 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.4005524505327 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.4005524505327 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.4005524505327 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.4005524505327 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.4005524505327 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.4005524505327 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.4005524505327 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.35908229869694 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.35908229869694 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.35908229869694 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.35908229869694 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.35908229869694 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.35908229869694 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.35908229869694 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.35908229869694 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.35908229869694 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.35908229869694 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.35908229869694 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.35908229869694 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.35908229869694 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.35908229869694 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.35908229869694 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.35908229869694 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.35908229869694 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.35908229869694 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.35908229869694 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.35908229869694 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.35908229869694 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.35908229869694 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.35908229869694 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.35908229869694 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.35908229869694 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.35908229869694 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.35908229869694 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.35908229869694 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.35908229869694 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.35908229869694 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.35908229869694 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.35908229869694 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.35908229869694 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.35908229869694 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.35908229869694 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.35908229869694 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.35908229869694 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.35908229869694 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.35908229869694 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.35908229869694 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.35908229869694 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31761214686117 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.31761214686117 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31761214686117 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31761214686117 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.31761214686117 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.31761214686117 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31761214686117 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31761214686117 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.31761214686117 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31761214686117 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -3.31761214686117 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -3.31761214686117 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -3.31761214686117 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -3.31761214686117 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -3.31761214686117 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -3.31761214686117 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -3.31761214686117 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -3.31761214686117 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -3.31761214686117 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -3.31761214686117 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -3.31761214686117 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -3.31761214686117 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -3.31761214686117 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -3.31761214686117 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -3.31761214686117 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -3.31761214686117 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -3.31761214686117 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -3.31761214686117 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -3.31761214686117 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -3.31761214686117 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -3.31761214686117 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -3.31761214686117 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -3.31761214686117 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.65650472394894 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.65650472394894 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.65650472394894 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.65650472394894 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.92215519634384 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.92215519634384 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.92215519634384 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.92215519634384 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.92215519634384 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.92215519634384 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.92215519634384 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.92215519634384 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.92215519634384 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.92215519634384 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.92215519634384 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.92215519634384 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.92215519634384 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.92215519634384 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.92215519634384 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.92215519634384 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.92215519634384 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.92215519634384 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.92215519634384 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.92215519634384 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.92215519634384 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.92215519634384 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.92215519634384 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.92215519634384 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.92215519634384 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.92215519634384 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.92215519634384 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.92215519634384 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.92215519634384 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.92215519634384 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.92215519634384 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.92215519634384 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.92215519634384 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.92215519634384 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.92215519634384 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.92215519634384 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.92215519634384 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.92215519634384 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.92215519634384 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.92215519634384 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.92215519634384 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.78932996014639 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.78932996014639 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.78932996014639 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.78932996014639 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.78932996014639 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.78932996014639 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.78932996014639 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.78932996014639 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.78932996014639 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.78932996014639 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.78932996014639 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.78932996014639 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.78932996014639 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.78932996014639 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.78932996014639 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.78932996014639 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.78932996014639 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.78932996014639 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.78932996014639 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.78932996014639 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.78932996014639 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.78932996014639 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.78932996014639 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.78932996014639 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.78932996014639 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.78932996014639 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.78932996014639 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.78932996014639 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.78932996014639 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.78932996014639 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.78932996014639 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.78932996014639 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.78932996014639 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.78932996014639 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.78932996014639 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.78932996014639 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.78932996014639 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.78932996014639 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.78932996014639 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.78932996014639 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.78932996014639 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.72291734204766 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.72291734204766 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.72291734204766 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.72291734204766 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.72291734204766 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.72291734204766 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.72291734204766 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.72291734204766 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.72291734204766 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.72291734204766 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.72291734204766 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.72291734204766 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.72291734204766 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.72291734204766 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.72291734204766 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.72291734204766 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.72291734204766 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.72291734204766 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.72291734204766 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.72291734204766 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.72291734204766 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.72291734204766 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.72291734204766 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.72291734204766 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.72291734204766 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.72291734204766 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.72291734204766 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.72291734204766 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.72291734204766 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.72291734204766 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.72291734204766 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.72291734204766 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.72291734204766 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.72291734204766 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.72291734204766 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.72291734204766 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.72291734204766 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.72291734204766 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.72291734204766 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.72291734204766 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.72291734204766 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.6897110329983 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.6897110329983 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.6897110329983 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.6897110329983 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.6897110329983 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.6897110329983 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.6897110329983 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.6897110329983 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.6897110329983 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.6897110329983 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.6897110329983 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.6897110329983 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.6897110329983 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.6897110329983 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.6897110329983 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.6897110329983 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.6897110329983 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.6897110329983 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.6897110329983 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.6897110329983 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.6897110329983 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.6897110329983 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.6897110329983 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.6897110329983 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.6897110329983 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.6897110329983 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.6897110329983 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.6897110329983 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.6897110329983 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.6897110329983 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.6897110329983 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.6897110329983 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.6897110329983 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.6897110329983 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.6897110329983 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.6897110329983 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.6897110329983 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.6897110329983 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.6897110329983 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.6897110329983 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.6897110329983 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.65650472394894 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.65650472394894 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.65650472394894 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.65650472394894 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.65650472394894 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.65650472394894 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.65650472394894 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.65650472394894 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -2.65650472394894 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -2.65650472394894 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -2.65650472394894 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -2.65650472394894 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -2.65650472394894 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -2.65650472394894 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -2.65650472394894 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -2.65650472394894 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -2.65650472394894 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -2.65650472394894 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -2.65650472394894 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -2.65650472394894 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -2.65650472394894 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -2.65650472394894 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -2.65650472394894 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -2.65650472394894 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -2.65650472394894 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -2.65650472394894 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -2.65650472394894 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -2.65650472394894 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -2.65650472394894 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -2.65650472394894 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -2.65650472394894 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 2.94565630755016 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 2.94565630755016 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 2.94565630755016 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 2.94565630755016 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 2.65109067679514 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 2.79837349217265 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 2.8720148998614 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 2.90883560370578 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 2.94565630755016 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.246811716680919 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.246811716680919 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.246811716680919 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.222130545012827 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.222130545012827 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.222130545012827 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.222130545012827 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.222130545012827 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.222130545012827 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.222130545012827 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.222130545012827 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.222130545012827 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.222130545012827 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.222130545012827 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.222130545012827 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.222130545012827 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.222130545012827 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.222130545012827 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.222130545012827 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.222130545012827 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.222130545012827 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.222130545012827 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.222130545012827 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.222130545012827 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.222130545012827 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.222130545012827 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.222130545012827 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.222130545012827 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.222130545012827 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.222130545012827 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.222130545012827 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.222130545012827 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.222130545012827 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.222130545012827 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.222130545012827 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.222130545012827 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.222130545012827 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.222130545012827 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.222130545012827 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.222130545012827 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.222130545012827 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.222130545012827 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.222130545012827 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.222130545012827 -8.50812385733714e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.234471130846873 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.234471130846873 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.234471130846873 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.234471130846873 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.234471130846873 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.234471130846873 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.234471130846873 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.234471130846873 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.234471130846873 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.234471130846873 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.234471130846873 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.234471130846873 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.234471130846873 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.234471130846873 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.234471130846873 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.234471130846873 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.234471130846873 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.234471130846873 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.234471130846873 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.234471130846873 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.234471130846873 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.234471130846873 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.234471130846873 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.234471130846873 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.234471130846873 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.234471130846873 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.234471130846873 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.234471130846873 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.234471130846873 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.234471130846873 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.234471130846873 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.234471130846873 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.234471130846873 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.234471130846873 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.234471130846873 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.234471130846873 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.234471130846873 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.234471130846873 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.234471130846873 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.234471130846873 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.234471130846873 -3.42524184941142e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.240641423763896 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.240641423763896 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.240641423763896 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.240641423763896 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.240641423763896 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.240641423763896 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.240641423763896 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.240641423763896 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.240641423763896 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.240641423763896 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.240641423763896 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.240641423763896 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.240641423763896 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.240641423763896 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.240641423763896 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.240641423763896 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.240641423763896 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.240641423763896 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.240641423763896 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.240641423763896 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.240641423763896 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.240641423763896 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.240641423763896 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.240641423763896 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.240641423763896 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.240641423763896 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.240641423763896 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.240641423763896 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.240641423763896 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.240641423763896 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.240641423763896 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.240641423763896 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.240641423763896 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.240641423763896 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.240641423763896 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.240641423763896 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.240641423763896 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.240641423763896 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.240641423763896 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.240641423763896 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.240641423763896 -8.83800845448566e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -8.34252560550156e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.246811716680919 -8.34252560550156e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -8.34252560550156e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.246811716680919 -8.34252560550156e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -8.34252560550156e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.246811716680919 -8.34252560550156e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.246811716680919 -8.34252560550156e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -8.34252560550156e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -8.34252560550156e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.246811716680919 -8.34252560550156e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -8.34252560550156e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -8.34252560550156e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -8.34252560550156e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -8.34252560550156e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -8.34252560550156e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -8.34252560550156e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -8.34252560550156e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -8.34252560550156e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.246811716680919 -8.34252560550156e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.246811716680919 -8.34252560550156e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.246811716680919 -8.34252560550156e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.246811716680919 -8.34252560550156e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.246811716680919 -8.34252560550156e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.246811716680919 -8.34252560550156e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.246811716680919 -8.34252560550156e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.246811716680919 -8.34252560550156e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.246811716680919 -8.34252560550156e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.246811716680919 -8.34252560550156e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.246811716680919 -8.34252560550156e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.246811716680919 -8.34252560550156e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.246811716680919 -8.34252560550156e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.246811716680919 -8.34252560550156e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.246811716680919 -8.34252560550156e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.246811716680919 -8.34252560550156e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.246811716680919 -8.34252560550156e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.246811716680919 -8.34252560550156e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.246811716680919 -8.34252560550156e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.246811716680919 -8.34252560550156e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.246811716680919 -8.34252560550156e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.246811716680919 -8.34252560550156e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.246811716680919 -8.34252560550156e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.0410468706379142 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.0410468706379142 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.0410468706379142 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.0451515577017057 -8.85142297121158e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.04309921416981 -3.78761313627889e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.0420730424038621 -1.25570821881255e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.0410468706379142 -8.72393092101607e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.410085972734708 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.410085972734708 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.410085972734708 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.410085972734708 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.369077375461237 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.389581674097972 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.39983382341634 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.404959898075524 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.410085972734708 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.297686455864869 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.297686455864869 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.297686455864869 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.297686455864869 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.327455101451356 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.327455101451356 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.327455101451356 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.327455101451356 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.327455101451356 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.327455101451356 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.327455101451356 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.327455101451356 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.327455101451356 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.327455101451356 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.327455101451356 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.327455101451356 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.327455101451356 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.327455101451356 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.327455101451356 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.327455101451356 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.327455101451356 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.327455101451356 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.327455101451356 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.327455101451356 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.327455101451356 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.327455101451356 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.327455101451356 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.327455101451356 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.327455101451356 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.327455101451356 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.327455101451356 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.327455101451356 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.327455101451356 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.327455101451356 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.327455101451356 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.327455101451356 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.327455101451356 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.327455101451356 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.327455101451356 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.327455101451356 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.327455101451356 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.327455101451356 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.327455101451356 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.327455101451356 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.327455101451356 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.312570778658113 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.312570778658113 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.312570778658113 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.312570778658113 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.312570778658113 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.312570778658113 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.312570778658113 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.312570778658113 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.312570778658113 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.312570778658113 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.312570778658113 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.312570778658113 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.312570778658113 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.312570778658113 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.312570778658113 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.312570778658113 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.312570778658113 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.312570778658113 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.312570778658113 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.312570778658113 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.312570778658113 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.312570778658113 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.312570778658113 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.312570778658113 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.312570778658113 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.312570778658113 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.312570778658113 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.312570778658113 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.312570778658113 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.312570778658113 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.312570778658113 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.312570778658113 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.312570778658113 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.312570778658113 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.312570778658113 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.312570778658113 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.312570778658113 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.312570778658113 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.312570778658113 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.312570778658113 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.312570778658113 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.305128617261491 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.305128617261491 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.305128617261491 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.305128617261491 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.305128617261491 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.305128617261491 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.305128617261491 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.305128617261491 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.305128617261491 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.305128617261491 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.305128617261491 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.305128617261491 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.305128617261491 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.305128617261491 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.305128617261491 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.305128617261491 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.305128617261491 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.305128617261491 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.305128617261491 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.305128617261491 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.305128617261491 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.305128617261491 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.305128617261491 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.305128617261491 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.305128617261491 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.305128617261491 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.305128617261491 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.305128617261491 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.305128617261491 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.305128617261491 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.305128617261491 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.305128617261491 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.305128617261491 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.305128617261491 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.305128617261491 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.305128617261491 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.305128617261491 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.305128617261491 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.305128617261491 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.305128617261491 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.305128617261491 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.30140753656318 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.30140753656318 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.30140753656318 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.30140753656318 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.30140753656318 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.30140753656318 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.30140753656318 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.30140753656318 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.30140753656318 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.30140753656318 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.30140753656318 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.30140753656318 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.30140753656318 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.30140753656318 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.30140753656318 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.30140753656318 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.30140753656318 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.30140753656318 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.30140753656318 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.30140753656318 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.30140753656318 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.30140753656318 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.30140753656318 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.30140753656318 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.30140753656318 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.30140753656318 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.30140753656318 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.30140753656318 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.30140753656318 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.30140753656318 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.30140753656318 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.30140753656318 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.30140753656318 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.30140753656318 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.30140753656318 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.30140753656318 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.30140753656318 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.30140753656318 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.30140753656318 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.30140753656318 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.30140753656318 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.297686455864869 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.297686455864869 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.297686455864869 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.297686455864869 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.297686455864869 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.297686455864869 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.297686455864869 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -0.297686455864869 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -0.297686455864869 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -0.297686455864869 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -0.297686455864869 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -0.297686455864869 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -0.297686455864869 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -0.297686455864869 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -0.297686455864869 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -0.297686455864869 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -0.297686455864869 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -0.297686455864869 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -0.297686455864869 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -0.297686455864869 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -0.297686455864869 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -0.297686455864869 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -0.297686455864869 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -0.297686455864869 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -0.297686455864869 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -0.297686455864869 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -0.297686455864869 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -0.297686455864869 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -0.297686455864869 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -0.297686455864869 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.6 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.8 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.9 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 3.95 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.0102735655433666 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.0102735655433666 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.0102735655433666 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.0102735655433666 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.00924620898902993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.00924620898902993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.00924620898902993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.00924620898902993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.00924620898902993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.00924620898902993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.00924620898902993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.00924620898902993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.00924620898902993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.00924620898902993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.00924620898902993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.00924620898902993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.00924620898902993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.00924620898902993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.00924620898902993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.00924620898902993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.00924620898902993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.00924620898902993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.00924620898902993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.00924620898902993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.00924620898902993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.00924620898902993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.00924620898902993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.00924620898902993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.00924620898902993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.00924620898902993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.00924620898902993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.00924620898902993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.00924620898902993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.00924620898902993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.00924620898902993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.00924620898902993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.00924620898902993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.00924620898902993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.00924620898902993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.00924620898902993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.00924620898902993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.00924620898902993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.00924620898902993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.00924620898902993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.00924620898902993 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.00975988726619826 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.00975988726619826 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.00975988726619826 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.00975988726619826 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.00975988726619826 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.00975988726619826 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.00975988726619826 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.00975988726619826 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.00975988726619826 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.00975988726619826 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.00975988726619826 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.00975988726619826 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.00975988726619826 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.00975988726619826 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.00975988726619826 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.00975988726619826 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.00975988726619826 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.00975988726619826 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.00975988726619826 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.00975988726619826 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.00975988726619826 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.00975988726619826 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.00975988726619826 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.00975988726619826 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.00975988726619826 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.00975988726619826 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.00975988726619826 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.00975988726619826 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.00975988726619826 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.00975988726619826 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.00975988726619826 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.00975988726619826 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.00975988726619826 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.00975988726619826 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.00975988726619826 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.00975988726619826 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.00975988726619826 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.00975988726619826 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.00975988726619826 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.00975988726619826 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.00975988726619826 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0100167264047824 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0100167264047824 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0100167264047824 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0100167264047824 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0100167264047824 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0100167264047824 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.0100167264047824 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.0100167264047824 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.0100167264047824 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0100167264047824 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0100167264047824 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0100167264047824 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0100167264047824 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.0100167264047824 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0100167264047824 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0100167264047824 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0100167264047824 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.0100167264047824 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.0100167264047824 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.0100167264047824 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.0100167264047824 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.0100167264047824 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.0100167264047824 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.0100167264047824 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.0100167264047824 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.0100167264047824 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.0100167264047824 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.0100167264047824 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.0100167264047824 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0100167264047824 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.0100167264047824 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.0100167264047824 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.0100167264047824 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.0100167264047824 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.0100167264047824 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.0100167264047824 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.0100167264047824 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.0100167264047824 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.0100167264047824 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.0100167264047824 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.0100167264047824 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0101451459740745 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0101451459740745 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0101451459740745 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0101451459740745 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0101451459740745 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0101451459740745 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.0101451459740745 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.0101451459740745 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.0101451459740745 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0101451459740745 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0101451459740745 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0101451459740745 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0101451459740745 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.0101451459740745 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0101451459740745 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0101451459740745 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0101451459740745 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.0101451459740745 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.0101451459740745 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.0101451459740745 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.0101451459740745 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.0101451459740745 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.0101451459740745 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.0101451459740745 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.0101451459740745 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.0101451459740745 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.0101451459740745 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.0101451459740745 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.0101451459740745 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0101451459740745 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.0101451459740745 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.0101451459740745 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.0101451459740745 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.0101451459740745 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.0101451459740745 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.0101451459740745 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.0101451459740745 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.0101451459740745 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.0101451459740745 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.0101451459740745 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.0101451459740745 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.0102735655433666 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.0102735655433666 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.0102735655433666 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.0102735655433666 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.0102735655433666 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 0.0102735655433666 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 0.0102735655433666 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 0.0102735655433666 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 0.0102735655433666 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 0.0102735655433666 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 0.0102735655433666 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 0.0102735655433666 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 0.0102735655433666 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 0.0102735655433666 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 0.0102735655433666 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 0.0102735655433666 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 0.0102735655433666 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 0.0102735655433666 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 0.0102735655433666 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 0.0102735655433666 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 0.0102735655433666 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 0.0102735655433666 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 0.0102735655433666 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 0.0102735655433666 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 0.0102735655433666 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 0.0102735655433666 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 0.0102735655433666 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 0.0102735655433666 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -4 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -4 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -4 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -4.4 -9.1e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -4.2 -4.05e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -4.1 -1.525e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -11.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -7.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -3.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 5.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 7.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 8.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: 10.5 -4.05 -2.625e-06"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -11.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -10.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -9.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -8.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -7.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 6.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 7.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 8.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 9.5 -4 -9.0001e-05"
[1] "Got NaN as a result of calling pnorm with: 10.5 -4 -9.0001e-05"
Warning in bind_rows_(x, .id): Unequal factor levels: coercing to character
Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector

Warning in bind_rows_(x, .id): binding character and factor vector,
coercing into character vector
# A tibble: 6 x 11
# Groups:   subject, targetSide, stream, orientation [6]
  subject targetSide stream orientation efficacy latency precision   val
  <chr>   <chr>      <chr>  <chr>          <dbl>   <dbl>     <dbl> <dbl>
1 AA      Both       Left   Canonical      0.709   0.158     0.358 125. 
2 AA      Both       Left   Inverted       0.834   0.475     0.561 114. 
3 AA      Both       Right  Canonical      0.641   0.254     0.397 147. 
4 AA      Both       Right  Inverted       0.606   0.120     0.426 151. 
5 AA      Left       Left   Canonical      0.863   0.200     0.431  25.2
6 AA      Left       Left   Inverted       0.784   0.448     0.641  31.9
# ... with 3 more variables: warnings <chr>, valGuessing <dbl>,
#   pLRtest <dbl>

Save the param estimates to a file.

Done.